/* Tema 3 — Aurora Pro */
:root, [data-theme="tema-3"] {
  --t3-bg: #f4f6fb;
  --t3-surface: #ffffff;
  --t3-ink: #0f172a;
  --t3-muted: #64748b;
  --t3-border: #e2e8f0;
  --t3-primary: #059669;
  --t3-primary-dark: #047857;
  --t3-primary-light: #10b981;
  --t3-primary-soft: #ecfdf5;
  --t3-accent: #06b6d4;
  --t3-gold: #f59e0b;
  --t3-hero-from: #0b1220;
  --t3-hero-to: #1e1b4b;
  --t3-radius: 16px;
  --t3-shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
  --t3-shadow-lg: 0 20px 50px rgba(15, 23, 42, 0.12);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
  background: var(--t3-bg);
  color: var(--t3-ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

.t3-container { width: min(1200px, 92vw); margin: 0 auto; }

/* ── Header (3 katman) ── */
.t3-header {
  position: sticky;
  top: 0;
  z-index: 200;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-bottom: 0.75rem;
  background: #fff;
  box-shadow: 0 1px 0 #e8ecf4;
}

.t3-header-inner {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.t3-topbar {
  background: #f4f6f8;
  border-bottom: 1px solid #e8ecf4;
}
.t3-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.45rem 0;
  font-size: 0.75rem;
  color: #64748b;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.t3-topbar-left,
.t3-topbar-right {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.t3-topbar-right a {
  color: inherit;
  text-decoration: none;
  transition: color 0.15s;
}
.t3-topbar-right a:hover { color: var(--t3-primary); }
.t3-topbar-accent {
  color: var(--t3-primary) !important;
  font-weight: 700;
}
.t3-icon-btn {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #475569;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
}
.t3-icon-green { color: #16a34a; }
.t3-icon-blue { color: #2563eb; }
.t3-topbar-email { display: none; }
@media (min-width: 640px) { .t3-topbar-email { display: inline; } }

.t3-theme-toggle {
  display: flex;
  align-items: center;
  gap: 2px;
  background: #fff;
  border-radius: 999px;
  padding: 2px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
}
.t3-theme-btn {
  width: 24px;
  height: 24px;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: #94a3b8;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.t3-theme-btn.t3-theme-active {
  background: var(--t3-primary);
  color: #fff;
}
.t3-topbar .t3-theme-btn.t3-theme-active {
  background: #475569;
  color: #fff;
}

.t3-mainbar {
  background: #fff;
}
.t3-mainbar-inner {
  display: grid;
  grid-template-columns: 1fr minmax(220px, 520px) 1fr;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 0;
}

.t3-logo {
  grid-column: 1;
  justify-self: start;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  color: #111827;
}
.t3-logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--t3-primary), var(--t3-primary-light));
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  flex-shrink: 0;
}
.t3-logo-text span { color: var(--t3-primary); }

.t3-search-wrap {
  grid-column: 2;
  justify-self: center;
  width: 100%;
  max-width: 520px;
  position: relative;
}
.t3-search {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #f4f6fb;
  border-radius: 999px;
  padding: 0.55rem 0.55rem 0.55rem 1rem;
  border: 1px solid #e8ecf4;
}
.t3-search input {
  flex: 1;
  border: none;
  background: transparent;
  outline: none;
  font: inherit;
  font-size: 0.84rem;
  min-width: 0;
  color: #0f172a;
}
.t3-search input::placeholder { color: #94a3b8; }
.t3-search button {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, var(--t3-primary), var(--t3-primary-light));
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.28);
}

.t3-actions {
  grid-column: 3;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.t3-icon-badge {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #f4f6fb;
  border: 1px solid #e8ecf4;
  color: #475569;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.15s, color 0.15s;
}
.t3-icon-badge svg {
  width: 20px;
  height: 20px;
}
.t3-icon-badge:hover {
  border-color: var(--t3-primary);
  color: var(--t3-primary);
}
.t3-badge {
  position: absolute;
  top: -3px;
  right: -3px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--t3-primary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.t3-badge--notif { background: #f59e0b; }

.t3-notif-wrap { position: relative; }
.t3-notif-panel {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 300;
  width: 280px;
  background: #fff;
  border: 1px solid #e8ecf4;
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
  overflow: hidden;
}
.t3-notif-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  width: 100%;
  padding: 0.75rem 1rem;
  border: none;
  background: #fff;
  text-align: left;
  cursor: pointer;
  border-bottom: 1px solid #f1f5f9;
}
.t3-notif-item:hover { background: #f8fafc; }
.t3-notif-item:last-child { border-bottom: 0; }
.t3-notif-icon { color: var(--t3-primary); flex-shrink: 0; }
.t3-notif-body strong { display: block; font-size: 0.8rem; color: #0f172a; }
.t3-notif-body small { display: block; font-size: 0.7rem; color: #64748b; margin-top: 0.15rem; }

.t3-btn-login {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, var(--t3-primary), var(--t3-primary-light));
  color: #fff;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(5, 150, 105, 0.28);
  transition: transform 0.15s, box-shadow 0.15s;
}
.t3-btn-login:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(5, 150, 105, 0.34);
}
.t3-btn-login-icon { display: inline-flex; }

.t3-nav {
  background: #fff;
  border-top: 1px solid #eef2f6;
}
.t3-nav-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  width: min(1200px, 92vw);
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  overflow-x: auto;
}
.t3-nav-list li { display: flex; align-items: stretch; }
.t3-nav-item {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.9rem 1.55rem;
  white-space: nowrap;
  color: var(--t3-primary-dark);
  font-size: 0.95rem;
  font-weight: 600;
  border-right: 1px solid #eef2f6;
  transition: color 0.15s, background 0.15s;
}
.t3-nav-list li:last-child .t3-nav-item { border-right: 0; }
.t3-nav-item:hover,
.t3-nav-item.t3-nav-active {
  color: var(--t3-primary);
  background: rgba(5, 150, 105, 0.06);
}
.t3-nav-icon { display: inline-flex; color: inherit; flex-shrink: 0; }
.t3-nav-icon svg {
  width: 20px;
  height: 20px;
}

.t3-mobile-toggle {
  display: none;
  border: none;
  background: none;
  padding: 0.35rem;
  cursor: pointer;
  color: #475569;
}
.t3-mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 400;
  background: rgba(15, 23, 42, 0.45);
  padding: 1rem;
}
.t3-mobile-nav[hidden] { display: none; }
.t3-mobile-nav:not([hidden]) {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.t3-mobile-nav-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  background: #fff;
  border-radius: 12px 12px 0 0;
}
.t3-mobile-nav-head button {
  border: none;
  background: none;
  cursor: pointer;
  color: #64748b;
}
.t3-mobile-nav a {
  display: block;
  padding: 0.85rem 1rem;
  background: #fff;
  border-top: 1px solid #f1f5f9;
  font-weight: 600;
  color: #0f172a;
}
.t3-mobile-nav a:last-child {
  border-radius: 0 0 12px 12px;
}

@media (max-width: 900px) {
  .t3-mainbar-inner {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
  }
  .t3-logo { grid-column: 1; grid-row: 1; }
  .t3-actions { grid-column: 2; grid-row: 1; justify-self: end; }
  .t3-search-wrap { grid-column: 1 / -1; grid-row: 2; max-width: none; }
  .t3-btn-login span.t3-btn-login-icon { display: none; }
  .t3-btn-login { padding: 0.55rem 0.85rem; font-size: 0.78rem; }
}

@media (max-width: 768px) {
  .t3-nav { display: none; }
  .t3-mobile-toggle { display: inline-flex; }
  .t3-topbar-right a:not(.t3-topbar-accent) { display: none; }
}

/* Ana sayfa hero slider → home-slider.css */

/* ── Sections ── */
.t3-section { padding: 3rem 0; }
.t3-section-head {
  text-align: center;
  margin-bottom: 2.5rem;
}
.t3-section-head .t3-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--t3-primary);
  margin-bottom: 0.5rem;
}
.t3-section-head h2 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.t3-section-head p {
  margin: 0.75rem auto 0;
  max-width: 560px;
  color: var(--t3-muted);
  font-size: 0.95rem;
}

/* Platforms bento */
.t3-platforms {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 0.85rem;
}
.t3-platform-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  padding: 1.25rem 0.75rem;
  border-radius: var(--t3-radius);
  background: var(--t3-surface);
  border: 1px solid var(--t3-border);
  transition: background 0.25s, border-color 0.25s, color 0.25s, transform 0.25s, box-shadow 0.25s;
  text-align: center;
  --p: #059669;
}
.t3-platform-card i {
  font-size: 1.75rem;
  color: #334155;
  transition: color 0.25s, transform 0.25s;
}
.t3-platform-card span {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--t3-ink);
  transition: color 0.25s;
}
.t3-platform-card:hover {
  background: var(--p);
  border-color: var(--p);
  transform: translateY(-4px);
  box-shadow: 0 10px 26px color-mix(in srgb, var(--p) 38%, transparent);
}
.t3-platform-card:hover i,
.t3-platform-card:hover span {
  color: #fff;
}
.t3-platform-card:hover i {
  transform: scale(1.06);
}
.t3-platform-card.t2-platform-dark:hover i,
.t3-platform-card.t2-platform-dark:hover span {
  color: #1f2937;
}
.t3-platform-card--instagram:hover {
  background: linear-gradient(135deg, #833ab4 0%, #e1306c 45%, #f77737 100%);
  border-color: #e1306c;
}
.t3-platform-card--tiktok:hover {
  background: #000000;
  border-color: #000000;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

/* Products */
.t3-section-products {
  background: linear-gradient(180deg, transparent 0%, rgba(238, 242, 255, 0.45) 100%);
}

.t3-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  align-items: start;
}

.t3-product-col {
  --p: #4f46e5;
  position: relative;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e8ecf4;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
  transition: box-shadow 0.2s, transform 0.2s;
}
.t3-product-col:hover {
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.08);
  transform: translateY(-2px);
}
.t3-product-col::before {
  content: '';
  display: block;
  height: 3px;
  background: linear-gradient(90deg, var(--p), color-mix(in srgb, var(--p) 55%, #818cf8));
}

.t3-product-col-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.9rem 1rem 0.75rem;
  background: linear-gradient(180deg, color-mix(in srgb, var(--p) 7%, #fff), #fff);
  border-bottom: 1px solid #f1f5f9;
}

.t3-product-col-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
}

.t3-product-col-icon {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: var(--p);
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px color-mix(in srgb, var(--p) 35%, transparent);
}
.t3-product-col-icon i { font-size: 1.2rem !important; line-height: 1; }

.t3-product-col-head small {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--p);
}
.t3-product-col-head h3 {
  margin: 0.15rem 0 0;
  font-size: 0.92rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.t3-product-col-link {
  flex-shrink: 0;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--p);
  background: color-mix(in srgb, var(--p) 10%, #fff);
  border: 1px solid color-mix(in srgb, var(--p) 18%, transparent);
  transition: background 0.15s;
}
.t3-product-col-link:hover {
  background: color-mix(in srgb, var(--p) 16%, #fff);
  color: var(--p);
}

.t3-product-list {
  padding: 0.45rem 0.55rem 0.65rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.t3-product-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.6rem;
  border-radius: 10px;
  border: 1px solid transparent;
  transition: background 0.15s, border-color 0.15s;
}
.t3-product-row:hover {
  background: #f8fafc;
  border-color: #eef2f6;
}
.t3-product-row:hover .t3-product-arrow {
  opacity: 1;
  transform: translateX(0);
}

.t3-product-row-main {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex: 1;
  min-width: 0;
}

.t3-product-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: color-mix(in srgb, var(--p) 12%, #fff);
  border: 1px solid color-mix(in srgb, var(--p) 15%, transparent);
  color: var(--p);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.t3-product-icon i { font-size: 0.95rem !important; line-height: 1; }

.t3-product-info { flex: 1; min-width: 0; }
.t3-product-name {
  font-size: 0.78rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.t3-product-info small {
  display: block;
  margin-top: 0.1rem;
  font-size: 0.65rem;
  color: #94a3b8;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.t3-product-price {
  flex-shrink: 0;
  padding: 0.28rem 0.5rem;
  border-radius: 7px;
  background: color-mix(in srgb, var(--p) 8%, #fff);
  font-weight: 800;
  font-size: 0.78rem;
  color: var(--p);
  white-space: nowrap;
  letter-spacing: -0.02em;
}

.t3-product-arrow {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  color: #cbd5e1;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.15s, transform 0.15s, color 0.15s;
}
.t3-product-arrow svg { width: 100%; height: 100%; display: block; }
.t3-product-row:hover .t3-product-arrow { color: var(--p); }

/* Features */
.t3-section-features .t3-section-head p {
  max-width: 32rem;
}

.t3-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  align-items: stretch;
}

.t3-feature {
  --f-color: #4f46e5;
  --f-bg: #eef2ff;
  position: relative;
  padding: 1.25rem 1.2rem 1.15rem;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #e8ecf4;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.03);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  overflow: hidden;
}
.t3-feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--f-color), color-mix(in srgb, var(--f-color) 50%, #818cf8));
}
.t3-feature:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px color-mix(in srgb, var(--f-color) 14%, transparent);
  border-color: color-mix(in srgb, var(--f-color) 22%, #e8ecf4);
}

.t3-feature--speed { --f-color: #d97706; --f-bg: #fffbeb; }
.t3-feature--secure { --f-color: #059669; --f-bg: #ecfdf5; }
.t3-feature--quality { --f-color: #4f46e5; --f-bg: #eef2ff; }

.t3-feature-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 0.85rem;
}

.t3-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--f-bg);
  border: 1px solid color-mix(in srgb, var(--f-color) 18%, transparent);
  color: var(--f-color);
  display: grid;
  place-items: center;
}
.t3-feature-icon svg { width: 22px; height: 22px; }

.t3-feature-num {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: color-mix(in srgb, var(--f-color) 45%, #94a3b8);
  line-height: 1;
}

.t3-feature h3 {
  margin: 0 0 0.4rem;
  font-size: 0.98rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
}
.t3-feature p {
  margin: 0;
  font-size: 0.8rem;
  color: #64748b;
  line-height: 1.55;
}

.t3-feature-points {
  list-style: none;
  margin: 0.75rem 0 0;
  padding: 0.65rem 0 0;
  border-top: 1px dashed #e8ecf4;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.t3-feature-points li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: #475569;
}
.t3-feature-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--f-color);
}

/* FAQ */
.t3-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
.t3-faq-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 1rem 1.15rem;
  border-radius: 12px;
  background: var(--t3-surface);
  border: 1px solid var(--t3-border);
  font-size: 0.875rem;
  font-weight: 600;
  transition: 0.15s;
}
.t3-faq-item:hover { border-color: var(--t3-primary); color: var(--t3-primary); }
.t3-faq-item::before { content: '?'; color: var(--t3-accent); font-weight: 800; }

/* Blog */
.t3-blog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.t3-blog-card {
  border-radius: var(--t3-radius);
  background: var(--t3-surface);
  border: 1px solid var(--t3-border);
  overflow: hidden;
  transition: 0.25s;
}
.t3-blog-card:hover { transform: translateY(-4px); box-shadow: var(--t3-shadow); }
.t3-blog-img {
  height: 140px;
  background: linear-gradient(135deg, #e0e7ff, #cffafe);
}
.t3-blog-body { padding: 1.1rem; }
.t3-blog-body small { font-size: 0.72rem; color: var(--t3-muted); }
.t3-blog-body h3 { margin: 0.35rem 0 0.65rem; font-size: 0.95rem; line-height: 1.4; }
.t3-blog-body a { font-size: 0.8rem; font-weight: 700; color: var(--t3-primary); }

/* SEO block */
.t3-seo {
  padding: 3rem;
  border-radius: var(--t3-radius);
  background: var(--t3-surface);
  border: 1px solid var(--t3-border);
}
.t3-seo h2 { margin: 0 0 1rem; font-size: 1.35rem; }
.t3-seo h3 { margin: 1.5rem 0 0.5rem; font-size: 1rem; color: var(--t3-primary); }
.t3-seo p { margin: 0; font-size: 0.9rem; color: var(--t3-muted); line-height: 1.75; }

/* Footer */
.t3-footer {
  background: var(--t3-hero-from);
  color: rgba(255, 255, 255, 0.85);
  padding: 3.5rem 0 0;
  margin-top: 2rem;
}
.t3-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.t3-footer-brand p { margin: 0.75rem 0 0; font-size: 0.875rem; opacity: 0.7; max-width: 280px; }
.t3-footer h4 { margin: 0 0 1rem; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; opacity: 0.9; }
.t3-footer ul { list-style: none; margin: 0; padding: 0; }
.t3-footer li { margin-bottom: 0.5rem; }
.t3-footer a { font-size: 0.875rem; opacity: 0.75; transition: 0.15s; }
.t3-footer a:hover { opacity: 1; color: #a5b4fc; }
.t3-footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 0;
  font-size: 0.8rem;
  opacity: 0.6;
}
.t3-footer-socials { display: flex; gap: 0.65rem; }
.t3-footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  opacity: 1;
}
.t3-footer-socials a:hover { background: rgba(255, 255, 255, 0.15); }

/* Search results dropdown */
.t3-search-results {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid var(--t3-border);
  border-radius: 14px;
  box-shadow: var(--t3-shadow-lg);
  max-height: 360px;
  overflow-y: auto;
  z-index: 500;
}
.t3-search-results[hidden] { display: none !important; }
.t3-search-group-title {
  padding: 0.55rem 1rem 0.35rem;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #94a3b8;
}
.t3-search-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.7rem 1rem;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid #f1f5f9;
}
.t3-search-item:hover { background: #f8fafc; }
.t3-search-item:last-child { border-bottom: 0; }
.t3-search-item-body { min-width: 0; flex: 1; }
.t3-search-item-body strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.35;
}
.t3-search-item-body small {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.72rem;
  color: #64748b;
}
.t3-search-item-side {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.25rem;
  flex-shrink: 0;
}
.t3-search-badge {
  display: inline-block;
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 700;
  white-space: nowrap;
}
.t3-search-badge-platform { background: #ecfdf5; color: #047857; }
.t3-search-badge-category { background: #d1fae5; color: #065f46; }
.t3-search-badge-package { background: #f1f5f9; color: #475569; }
.t3-search-price { font-size: 0.75rem; font-weight: 700; color: #059669; }
.t3-search-empty {
  padding: 0.85rem 1rem;
  font-size: 0.82rem;
  color: #64748b;
}

/* Responsive */
@media (max-width: 1024px) {
  .t3-products-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .t3-features { grid-template-columns: 1fr; }
  .t3-blog-grid { grid-template-columns: repeat(2, 1fr); }
  .t3-footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .t3-products-grid { grid-template-columns: 1fr; }
  .t3-faq-grid { grid-template-columns: 1fr; }
  .t3-blog-grid { grid-template-columns: 1fr; }
  .t3-footer-grid { grid-template-columns: 1fr; }
}
