/* =============================================
   Browser Hit Bot — Custom Styles
   ============================================= */

/* ---- Font Import ---- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ---- Reset & Base ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background-color: #0f1012;
  color: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #0a0a0a; }
::-webkit-scrollbar-thumb { background: #2563eb; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #06b6d4; }

/* ---- Gradient Text Utility ---- */
.gradient-text {
  background: linear-gradient(135deg, #2563eb, #06b6d4, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-cyan {
  background: linear-gradient(135deg, #2563eb, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- Animations ---- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33%       { transform: translateY(-20px) rotate(5deg); }
  66%       { transform: translateY(-10px) rotate(-5deg); }
}

@keyframes ping {
  75%, 100% { transform: scale(2); opacity: 0; }
}

@keyframes pulse-green {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
  50%       { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
}

/* ---- Scroll-reveal class (applied via JS) ---- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ---- Hero ---- */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 1rem 3rem;
  position: relative;
  overflow: hidden;
  background-color: #0f1012;
}

.hero-glow-top {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(37,99,235,0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-glow-bottom {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(6,182,212,0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-floating-icon {
  position: absolute;
  top: 8rem;
  right: 15%;
  opacity: 0.35;
  animation: float 6s ease-in-out infinite;
  pointer-events: none;
  display: none;
}

@media (min-width: 1024px) {
  .hero-floating-icon { display: block; }
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 72rem;
  width: 100%;
  animation: fadeInUp 0.8s ease forwards;
}

/* ---- Badge ---- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, rgba(37,99,235,0.2), rgba(6,182,212,0.2));
  border: 1px solid rgba(37,99,235,0.3);
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  margin-bottom: 2rem;
  backdrop-filter: blur(8px);
}

.badge-dot {
  position: relative;
  width: 0.5rem;
  height: 0.5rem;
}

.badge-dot-ping {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #06b6d4;
  opacity: 0.75;
  animation: ping 1.2s cubic-bezier(0,0,0.2,1) infinite;
}

.badge-dot-solid {
  position: relative;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #06b6d4;
  box-shadow: 0 0 8px rgba(6,182,212,0.7);
}

/* ---- Navigation ---- */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.3s ease;
  padding-top: 1rem;
}

#navbar.scrolled {
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(37,99,235,0.2);
  padding-top: 0;
}

.nav-inner {
  max-width: 88rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 5rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  text-decoration: none;
}

.nav-logo-img {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, #2563eb, #06b6d4);
  padding: 2px;
}

.nav-logo-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.nav-logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  letter-spacing: -0.02em;
}

.nav-menu {
  display: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .nav-menu { display: flex; }
}

.nav-link {
  color: #d1d5db;
  font-weight: 500;
  font-size: 0.875rem;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #2563eb, #06b6d4);
  transition: width 0.3s ease;
}

.nav-link:hover { color: #06b6d4; }
.nav-link:hover::after { width: 100%; }

.nav-actions {
  display: none;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .nav-actions { display: flex; }
}

.btn-lang {
  padding: 0.375rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid #2563eb;
  color: white;
  font-weight: 700;
  font-size: 0.875rem;
  background: transparent;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(37,99,235,0.3);
  transition: all 0.3s ease;
}

.btn-lang:hover {
  background: rgba(37,99,235,0.1);
  box-shadow: 0 0 15px rgba(37,99,235,0.5);
}

.btn-start {
  background: linear-gradient(135deg, #2563eb, #06b6d4);
  color: white;
  padding: 0.625rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 0 0 rgba(37,99,235,0);
}

.btn-start:hover {
  box-shadow: 0 0 20px rgba(37,99,235,0.4);
  transform: scale(1.05);
}

/* ---- Mobile Menu ---- */
.mobile-menu-btn {
  display: flex;
  background: none;
  border: none;
  color: #d1d5db;
  cursor: pointer;
  padding: 0.5rem;
}

@media (min-width: 768px) {
  .mobile-menu-btn { display: none; }
}

.mobile-menu {
  background: #0a0a0a;
  border-top: 1px solid rgba(255,255,255,0.1);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
}

.mobile-menu.open { max-height: 500px; }

.mobile-menu-inner {
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-nav-link {
  display: block;
  color: #d1d5db;
  font-weight: 500;
  font-size: 1rem;
  padding: 0.5rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: color 0.3s;
  width: 100%;
}

.mobile-nav-link:hover { color: #06b6d4; }

/* ---- Buttons ---- */
.btn-primary {
  background: linear-gradient(135deg, #2563eb, #06b6d4);
  color: white;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  font-weight: 700;
  font-size: 1.125rem;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  box-shadow: 0 0 30px rgba(37,99,235,0.4);
  transform: scale(1.02);
}

.btn-secondary {
  background: #1a1b1e;
  border: 1px solid rgba(37,99,235,0.3);
  color: white;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  font-weight: 700;
  font-size: 1.125rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-secondary:hover {
  background: #25262b;
  border-color: rgba(37,99,235,0.5);
  box-shadow: 0 0 20px rgba(37,99,235,0.2);
  transform: scale(1.02);
}

/* ---- Section Base ---- */
section { width: 100%; }

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.15;
}

.section-subtitle {
  color: #9ca3af;
  font-size: 1.125rem;
  max-width: 42rem;
  margin: 0 auto;
}

/* ---- Cards ---- */
.card {
  background: #18181b;
  border: 1px solid rgba(37,99,235,0.2);
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.3s ease;
}

.card:hover {
  border-color: rgba(37,99,235,0.4);
  box-shadow: 0 0 30px rgba(37,99,235,0.15);
  transform: translateY(-5px);
}

.card-icon-wrap {
  width: 3.5rem;
  height: 3.5rem;
  background: rgba(37,99,235,0.1);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: background 0.3s;
  color: #2563eb;
}

.card:hover .card-icon-wrap {
  background: rgba(37,99,235,0.2);
  color: #06b6d4;
}

/* ---- Stats Cards ---- */
.stat-card {
  background: rgba(24,24,27,0.5);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(37,99,235,0.2);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.stat-card:hover {
  border-color: rgba(37,99,235,0.4);
  box-shadow: 0 0 30px rgba(37,99,235,0.15);
}

/* ---- Pricing ---- */
.pricing-card {
  background: #18181b;
  border: 2px solid rgba(37,99,235,0.1);
  border-radius: 1rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  border-color: rgba(37,99,235,0.3);
  box-shadow: 0 0 20px rgba(37,99,235,0.1);
}

.pricing-card.popular,
.pricing-card.premium {
  border-color: rgba(37,99,235,0.5);
  box-shadow: 0 0 40px rgba(37,99,235,0.2);
  transform: scale(1.03);
  z-index: 1;
}

.pricing-tag {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #2563eb, #06b6d4);
  color: white;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(37,99,235,0.3);
}

.pricing-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(37,99,235,0.3), transparent);
  margin: 1.5rem 0;
}

.btn-buy {
  width: 100%;
  padding: 0.875rem;
  border-radius: 0.75rem;
  font-weight: 700;
  font-size: 0.875rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
}

.btn-buy-primary {
  background: linear-gradient(135deg, #2563eb, #06b6d4);
  color: white;
}

.btn-buy-primary:hover {
  box-shadow: 0 0 30px rgba(37,99,235,0.4);
}

.btn-buy-secondary {
  background: #25262b;
  border: 1px solid rgba(37,99,235,0.3);
  color: white;
}

.btn-buy-secondary:hover {
  background: #2c2e33;
  border-color: rgba(37,99,235,0.5);
  box-shadow: 0 0 15px rgba(37,99,235,0.2);
}

/* ---- HowItWorks Step Number ---- */
.step-number {
  position: absolute;
  top: 0;
  right: 0;
  padding: 1rem;
  opacity: 0.08;
  font-size: 4rem;
  font-weight: 800;
  color: white;
  line-height: 1;
  pointer-events: none;
  transition: opacity 0.3s;
}

.card:hover .step-number { opacity: 0.15; }

/* ---- FAQ ---- */
.faq-item {
  background: #1f1f26;
  border: 1px solid rgba(37,99,235,0.2);
  border-radius: 0.75rem;
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq-item:hover { border-color: rgba(37,99,235,0.5); }

.faq-toggle {
  width: 100%;
  text-align: left;
  padding: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: white;
}

.faq-question {
  font-weight: 700;
  font-size: 0.9375rem;
  line-height: 1.5;
}

.faq-chevron {
  flex-shrink: 0;
  color: #2563eb;
  transition: transform 0.3s ease;
}

.faq-chevron.open { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer.open { max-height: 300px; }

.faq-answer-inner {
  padding: 0 1.5rem 1.5rem;
  color: #9ca3af;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.75;
}

/* ---- Contact ---- */
.contact-input {
  width: 100%;
  background: #0f1012;
  border: 1px solid rgba(37,99,235,0.3);
  border-radius: 0.75rem;
  padding: 0.875rem 1rem;
  color: white;
  font-size: 0.9375rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-input::placeholder { color: #4b5563; }

.contact-input:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37,99,235,0.15);
}

.contact-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

/* ---- Footer ---- */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.status-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #22c55e;
  animation: pulse-green 2s ease-in-out infinite;
  display: inline-block;
  box-shadow: 0 0 6px #22c55e;
}

/* ---- Toast Notification ---- */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: #18181b;
  border: 1px solid rgba(37,99,235,0.4);
  border-radius: 0.75rem;
  padding: 1rem 1.5rem;
  z-index: 999;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  box-shadow: 0 0 30px rgba(37,99,235,0.2);
  max-width: 20rem;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.toast-title {
  font-weight: 700;
  color: white;
  font-size: 0.9375rem;
  margin-bottom: 0.25rem;
}

.toast-desc {
  color: #9ca3af;
  font-size: 0.8125rem;
}

/* ---- Social Icons ---- */
.social-icon {
  background: #141414;
  padding: 1rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(37,99,235,0.2);
  color: #9ca3af;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.social-icon:hover {
  border-color: #06b6d4;
  background: rgba(37,99,235,0.1);
  color: white;
  box-shadow: 0 0 20px rgba(6,182,212,0.4);
  transform: translateY(-5px) scale(1.1);
}

/* ---- Other Solutions ---- */
.solution-card {
  background: #141414;
  border: 1px solid rgba(37,99,235,0.2);
  border-radius: 0.75rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.solution-card:hover {
  border-color: #06b6d4;
  box-shadow: 0 0 30px rgba(37,99,235,0.2);
  transform: translateY(-5px) scale(1.03);
}

.solution-card:hover h3 { color: #06b6d4; }

.solution-bg-icon {
  position: absolute;
  top: 0;
  right: 0;
  padding: 1rem;
  opacity: 0.05;
  transition: opacity 0.3s;
}

.solution-card:hover .solution-bg-icon { opacity: 0.1; }

/* ---- Guarantee Cards ---- */
.guarantee-card {
  background: #18181b;
  border: 1px solid rgba(37,99,235,0.2);
  border-radius: 0.75rem;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.guarantee-card:hover {
  border-color: #06b6d4;
  box-shadow: 0 0 20px rgba(37,99,235,0.15);
  transform: translateY(-5px);
}

.guarantee-card:hover .g-icon { color: #06b6d4; }
.guarantee-card:hover h3 { color: #06b6d4; }

.g-icon-wrap {
  width: 3rem;
  height: 3rem;
  background: rgba(37,99,235,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: background 0.3s;
}

.guarantee-card:hover .g-icon-wrap { background: rgba(6,182,212,0.1); }

/* ---- Trial Guarantee ---- */
.trial-card {
  background: #141414;
  border: 1px solid rgba(37,99,235,0.2);
  border-radius: 0.75rem;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.trial-card:hover {
  border-color: #06b6d4;
  box-shadow: 0 0 20px rgba(37,99,235,0.2);
  transform: translateY(-5px);
}

.trial-card:hover h3 { color: #06b6d4; }
.trial-card:hover .t-icon-wrap { background: rgba(6,182,212,0.1); }
.trial-card:hover .t-icon { color: #06b6d4; }

.t-icon-wrap {
  width: 3rem;
  height: 3rem;
  background: rgba(37,99,235,0.1);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: background 0.3s;
}

/* ---- Section backgrounds ---- */
.bg-dark { background-color: #0f1012; }
.bg-darker { background-color: #0a0a0a; }

/* ---- Grid helpers ---- */
.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

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

.grid-4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

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

/* ---- Container ---- */
.container {
  max-width: 88rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-md {
  max-width: 56rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---- Flex helpers ---- */
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-btn-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  width: 100%;
}

@media (min-width: 640px) {
  .flex-btn-group {
    flex-direction: row;
    justify-content: center;
    width: auto;
  }
}

/* ---- Contact info links ---- */
.contact-info-link {
  background: #18181b;
  padding: 1.5rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  border: 1px solid rgba(37,99,235,0.2);
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.contact-info-link:hover {
  background: #202025;
  border-color: rgba(37,99,235,0.5);
}

.contact-icon-wrap {
  padding: 1rem;
  border-radius: 0.75rem;
  background: rgba(37,99,235,0.1);
  flex-shrink: 0;
  color: #2563eb;
  transition: background 0.3s;
}

.contact-info-link:hover .contact-icon-wrap { background: rgba(37,99,235,0.2); }

/* ---- Responsive hero buttons ---- */
@media (max-width: 639px) {
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
}

/* ---- Demo page video placeholder ---- */
.video-placeholder {
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a1a1f, #27272a);
}

.video-play-btn {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #06b6d4, #2563eb);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px rgba(6,182,212,0.6);
  margin: 0 auto 1.5rem;
}

/* ---- Section Separator (orijinal SectionSeparator bileşeni) ---- */
.section-sep {
  width: 100%;
  height: 40px;
  background-color: #171717;
  flex-shrink: 0;
}

/* ---- Footer Grid ---- */
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
}

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

@media (min-width: 768px) {
  .footer-brand { grid-column: 1; }
}

/* ---- Footer Links ---- */
.footer-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #9ca3af;
  text-decoration: none;
  font-size: 0.9375rem;
  transition: color 0.3s;
}

.footer-link:hover { color: white; }

.footer-link-icon {
  padding: 0.375rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-nav-link {
  color: #9ca3af;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s;
}

.footer-nav-link:hover { color: #06b6d4; }

/* ---- Telegram Contact Card ---- */
.contact-telegram-card {
  background: linear-gradient(135deg, #2563eb, #06b6d4);
  padding: 2rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  text-decoration: none;
  color: white;
  transition: box-shadow 0.3s ease;
  margin-top: auto;
}

.contact-telegram-card:hover {
  box-shadow: 0 0 30px rgba(37, 99, 235, 0.4);
}

/* ---- Page-specific ---- */
.page-hero {
  padding: 8rem 1.5rem 3rem;
  text-align: center;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #06b6d4;
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 2rem;
  transition: color 0.3s;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.back-link:hover { color: #67e8f9; }
.back-link:hover svg { transform: translateX(-4px); }
.back-link svg { transition: transform 0.3s; }
