﻿:root {
  --tk-primary: #0284c7;
  --tk-primary-hover: #0369a1;
  --tk-primary-light: #e0f2fe;
  --tk-secondary: #0f172a;
  --tk-accent: #f59e0b;
  --tk-accent-light: #fef3c7;
  --tk-dark: #090d16;
  --tk-card-bg: #131b2e;
  --tk-card-border: #1e293b;
  --tk-text-main: #f8fafc;
  --tk-text-muted: #94a3b8;
  --tk-text-dark: #334155;
  --tk-bg-light: #f8fafc;
  --tk-bg-white: #ffffff;
  --tk-border-light: #e2e8f0;
  --tk-radius-sm: 8px;
  --tk-radius-md: 16px;
  --tk-radius-lg: 24px;
  --tk-font-jp: 'Noto Sans JP', sans-serif;
  --tk-font-en: 'Plus Jakarta Sans', sans-serif;
  --tk-transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --tk-shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
  --tk-shadow-md: 0 12px 30px rgba(0, 0, 0, 0.08);
  --tk-shadow-glow: 0 0 35px rgba(2, 132, 199, 0.25);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--tk-font-jp);
  background-color: var(--tk-bg-light);
  color: var(--tk-text-dark);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Auroral Mesh Animation */
.atlas-fx-aurora {
  position: absolute;
  top: -20%;
  left: -10%;
  width: 120%;
  height: 140%;
  background: radial-gradient(circle at 20% 30%, rgba(2, 132, 199, 0.18) 0%, transparent 45%),
              radial-gradient(circle at 80% 70%, rgba(245, 158, 11, 0.12) 0%, transparent 40%),
              radial-gradient(circle at 50% 50%, rgba(56, 189, 248, 0.15) 0%, transparent 50%);
  filter: blur(60px);
  z-index: 0;
  pointer-events: none;
  animation: auroraDrift 18s ease-in-out infinite alternate;
}

@keyframes auroraDrift {
  0% { transform: scale(1) translate(0, 0) rotate(0deg); }
  50% { transform: scale(1.08) translate(-2%, 3%) rotate(2deg); }
  100% { transform: scale(0.95) translate(3%, -2%) rotate(-1deg); }
}

/* Layout Container */
.tk-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* Header & Navigation */
.tk-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 1000;
  transition: var(--tk-transition);
}

.tk-nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.tk-logo img {
  height: 44px;
  width: auto;
  display: block;
}

.tk-nav-menu {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}

.tk-nav-link {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--tk-transition);
  position: relative;
  padding: 6px 0;
}

.tk-nav-link:hover, .tk-nav-link:focus {
  color: #ffffff;
}

.tk-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--tk-primary);
  transition: width 0.25s ease;
}

.tk-nav-link:hover::after {
  width: 100%;
}

.tk-nav-cta {
  background: linear-gradient(135deg, var(--tk-primary), #0284c7);
  color: #ffffff !important;
  padding: 10px 22px !important;
  border-radius: 50px;
  font-weight: 700 !important;
  box-shadow: 0 4px 15px rgba(2, 132, 199, 0.35);
  text-decoration: none;
  transition: var(--tk-transition);
}

.tk-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(2, 132, 199, 0.5);
}

.tk-mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 1.8rem;
  cursor: pointer;
}/* Typography & Badges */
.tk-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(2, 132, 199, 0.15);
  border: 1px solid rgba(56, 189, 248, 0.3);
  color: #38bdf8;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.tk-section-title-wrap {
  text-align: center;
  max-width: 840px;
  margin: 0 auto 60px auto;
}

.tk-section-subtitle {
  font-family: var(--tk-font-en);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--tk-primary);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 12px;
  display: block;
}

.tk-section-heading {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--tk-secondary);
  line-height: 1.35;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.tk-section-desc {
  font-size: 1.05rem;
  color: #64748b;
  line-height: 1.8;
}

/* Hero Bento-Modular Archetype */
.tk-hero {
  position: relative;
  background: #090d16;
  color: #ffffff;
  padding: 160px 0 100px 0;
  overflow: hidden;
}

.tk-hero-bento {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  grid-template-rows: auto auto;
  gap: 24px;
  margin-top: 30px;
}

.tk-bento-main {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
  background: rgba(19, 27, 46, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--tk-radius-lg);
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
}

.tk-hero-headline {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.tk-hero-headline span {
  background: linear-gradient(135deg, #38bdf8, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tk-hero-sub {
  font-size: 1.125rem;
  color: #cbd5e1;
  line-height: 1.85;
  margin-bottom: 36px;
}

.tk-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.tk-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #0284c7, #0369a1);
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(2, 132, 199, 0.4);
  transition: var(--tk-transition);
  border: none;
  cursor: pointer;
}

.tk-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(2, 132, 199, 0.6);
}

.tk-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  padding: 16px 28px;
  border-radius: 50px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--tk-transition);
}

.tk-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
}

.tk-bento-visual {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
  border-radius: var(--tk-radius-lg);
  overflow: hidden;
  position: relative;
  min-height: 260px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.tk-bento-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tk-bento-stats {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
  background: rgba(19, 27, 46, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--tk-radius-lg);
  padding: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  text-align: center;
  backdrop-filter: blur(8px);
}

.tk-stat-num {
  font-family: var(--tk-font-en);
  font-size: 2.2rem;
  font-weight: 800;
  color: #38bdf8;
  line-height: 1.2;
}

.tk-stat-label {
  font-size: 0.8rem;
  color: #94a3b8;
  margin-top: 6px;
  font-weight: 500;
}

/* Trust Bar */
.tk-trust-bar {
  background: #0f172a;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 28px 0;
  color: #94a3b8;
}

.tk-trust-flex {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.tk-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #e2e8f0;
}

.tk-trust-icon {
  width: 28px;
  height: 28px;
  color: var(--tk-accent);
}/* General Section Padding */
.tk-section {
  padding: 100px 0;
  position: relative;
}

.tk-section-alt {
  background-color: #f1f5f9;
}

.tk-section-dark {
  background-color: #090d16;
  color: #ffffff;
}

.tk-section-dark .tk-section-heading {
  color: #ffffff;
}

.tk-section-dark .tk-section-desc {
  color: #94a3b8;
}

/* Pain & Problem Section */
.tk-problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.tk-problem-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--tk-radius-md);
  padding: 36px 30px;
  position: relative;
  box-shadow: var(--tk-shadow-sm);
  transition: var(--tk-transition);
}

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

.tk-problem-tag {
  color: #ef4444;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.tk-problem-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--tk-secondary);
  margin-bottom: 14px;
}

/* Value Props / Benefits */
.tk-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.tk-benefit-card {
  background: #ffffff;
  border-radius: var(--tk-radius-md);
  padding: 36px 28px;
  border: 1px solid #e2e8f0;
  transition: var(--tk-transition);
  box-shadow: var(--tk-shadow-sm);
}

.tk-benefit-card:hover {
  border-color: var(--tk-primary);
  box-shadow: var(--tk-shadow-md);
  transform: translateY(-4px);
}

.tk-benefit-icon {
  width: 56px;
  height: 56px;
  background: var(--tk-primary-light);
  color: var(--tk-primary);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.tk-benefit-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--tk-secondary);
  margin-bottom: 12px;
}

/* Timeline Process */
.tk-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.tk-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 28px;
  width: 3px;
  background: #cbd5e1;
}

.tk-step-item {
  position: relative;
  padding-left: 80px;
  margin-bottom: 48px;
}

.tk-step-item:last-child {
  margin-bottom: 0;
}

.tk-step-num {
  position: absolute;
  left: 0;
  top: 0;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--tk-primary);
  color: #ffffff;
  font-family: var(--tk-font-en);
  font-size: 1.35rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 6px #ffffff, var(--tk-shadow-sm);
  z-index: 2;
}

.tk-step-body {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--tk-radius-md);
  padding: 28px 32px;
  box-shadow: var(--tk-shadow-sm);
}

.tk-step-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--tk-secondary);
  margin-bottom: 10px;
}

/* Service Mosaic */
.tk-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 32px;
}

.tk-service-card {
  background: #ffffff;
  border-radius: var(--tk-radius-lg);
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: var(--tk-shadow-sm);
  transition: var(--tk-transition);
  display: flex;
  flex-direction: column;
}

.tk-service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--tk-shadow-md);
}

.tk-service-img {
  height: 220px;
  width: 100%;
  object-fit: cover;
  display: block;
}

.tk-service-content {
  padding: 32px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.tk-service-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--tk-secondary);
  margin-bottom: 14px;
}

.tk-service-list {
  list-style: none;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #f1f5f9;
}

.tk-service-list li {
  font-size: 0.92rem;
  color: #475569;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tk-service-list li svg {
  color: var(--tk-primary);
  flex-shrink: 0;
}

/* Scenarios */
.tk-scenario-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 30px;
}

.tk-scenario-card {
  background: #131b2e;
  border: 1px solid #1e293b;
  border-radius: var(--tk-radius-lg);
  overflow: hidden;
  color: #ffffff;
  display: flex;
  flex-direction: column;
}

.tk-scenario-img {
  height: 200px;
  width: 100%;
  object-fit: cover;
}

.tk-scenario-body {
  padding: 30px;
  flex-grow: 1;
}

.tk-scenario-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(56, 189, 248, 0.15);
  color: #38bdf8;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 4px;
  margin-bottom: 14px;
}

.tk-scenario-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #ffffff;
}

/* Comparison Table */
.tk-compare-wrap {
  background: #ffffff;
  border-radius: var(--tk-radius-lg);
  border: 1px solid #e2e8f0;
  overflow-x: auto;
  box-shadow: var(--tk-shadow-sm);
}

.tk-compare-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.tk-compare-table th, .tk-compare-table td {
  padding: 22px 28px;
  border-bottom: 1px solid #e2e8f0;
}

.tk-compare-table th {
  background: #f8fafc;
  font-weight: 700;
  color: var(--tk-secondary);
  font-size: 1.05rem;
}

.tk-compare-highlight {
  background: rgba(2, 132, 199, 0.04);
  color: var(--tk-primary);
  font-weight: 700;
}

/* Testimonials */
.tk-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.tk-testi-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--tk-radius-md);
  padding: 36px 30px;
  box-shadow: var(--tk-shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.tk-testi-rating {
  color: var(--tk-accent);
  margin-bottom: 16px;
  display: flex;
  gap: 4px;
}

.tk-testi-text {
  font-size: 1rem;
  color: #334155;
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: normal;
}

.tk-testi-user {
  display: flex;
  align-items: center;
  gap: 16px;
  border-top: 1px solid #f1f5f9;
  padding-top: 18px;
}

.tk-testi-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}

.tk-testi-name {
  font-weight: 700;
  color: var(--tk-secondary);
  font-size: 0.95rem;
}

.tk-testi-meta {
  font-size: 0.8rem;
  color: #64748b;
}

/* FAQ Accordion */
.tk-faq-list {
  max-width: 860px;
  margin: 0 auto;
}

.tk-faq-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--tk-radius-sm);
  margin-bottom: 16px;
  overflow: hidden;
  transition: var(--tk-transition);
}

.tk-faq-question {
  width: 100%;
  padding: 22px 28px;
  text-align: left;
  background: transparent;
  border: none;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--tk-secondary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.tk-faq-icon {
  width: 20px;
  height: 20px;
  color: var(--tk-primary);
  transition: transform 0.3s ease;
}

.tk-faq-item.active .tk-faq-icon {
  transform: rotate(180deg);
}

.tk-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 28px;
  color: #475569;
  line-height: 1.8;
}

.tk-faq-item.active .tk-faq-answer {
  max-height: 400px;
  padding: 0 28px 24px 28px;
}

/* Form Section (Presentation: Split Card & Reassurance) */
.tk-form-section {
  background: #090d16;
  color: #ffffff;
  padding: 100px 0;
  position: relative;
}

.tk-form-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  background: #131b2e;
  border: 1px solid #1e293b;
  border-radius: var(--tk-radius-lg);
  padding: 48px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.tk-form-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.tk-form-steps {
  list-style: none;
  margin-top: 32px;
}

.tk-form-step-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.tk-form-step-badge {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--tk-primary);
  color: #ffffff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tk-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.tk-form-full {
  grid-column: 1 / 3;
}

.tk-form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: #cbd5e1;
  margin-bottom: 8px;
}

.tk-form-label span.req {
  color: #ef4444;
  margin-left: 4px;
}

.tk-input, .tk-select, .tk-textarea {
  width: 100%;
  background: #0b1120;
  border: 1px solid #334155;
  border-radius: var(--tk-radius-sm);
  padding: 14px 18px;
  color: #ffffff;
  font-family: inherit;
  font-size: 0.95rem;
  transition: var(--tk-transition);
}

.tk-input:focus, .tk-select:focus, .tk-textarea:focus {
  outline: none;
  border-color: var(--tk-primary);
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.3);
}

.tk-phone-wrap {
  display: flex;
}

.tk-phone-prefix {
  background: #1e293b;
  border: 1px solid #334155;
  border-right: none;
  border-radius: var(--tk-radius-sm) 0 0 var(--tk-radius-sm);
  padding: 14px 16px;
  color: #94a3b8;
  font-weight: 600;
  font-size: 0.95rem;
}

.tk-phone-input {
  border-radius: 0 var(--tk-radius-sm) var(--tk-radius-sm) 0;
}

.tk-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.88rem;
  color: #94a3b8;
  cursor: pointer;
  line-height: 1.6;
}

.tk-checkbox-label input {
  margin-top: 4px;
  accent-color: var(--tk-primary);
}

.tk-checkbox-label a {
  color: #38bdf8;
  text-decoration: underline;
}

.tk-form-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--tk-primary), #0284c7);
  color: #ffffff;
  border: none;
  padding: 18px 24px;
  border-radius: var(--tk-radius-sm);
  font-size: 1.1rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(2, 132, 199, 0.4);
  transition: var(--tk-transition);
}

.tk-form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(2, 132, 199, 0.6);
}

.tk-form-status {
  margin-top: 16px;
  padding: 16px;
  border-radius: var(--tk-radius-sm);
  display: none;
  font-size: 0.95rem;
  text-align: center;
}

.tk-form-status.success {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid #10b981;
  color: #34d399;
  display: block;
}

.tk-form-status.error {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid #ef4444;
  color: #f87171;
  display: block;
}

/* Footer Archetype */
.tk-footer {
  background: #050811;
  color: #94a3b8;
  padding: 80px 0 40px 0;
  border-top: 1px solid #1e293b;
  font-size: 0.9rem;
}

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

.tk-footer-col h4 {
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.tk-footer-links {
  list-style: none;
}

.tk-footer-links li {
  margin-bottom: 12px;
}

.tk-footer-links a {
  color: #94a3b8;
  text-decoration: none;
  transition: var(--tk-transition);
}

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

.tk-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  border-top: 1px solid #1e293b;
  padding-top: 30px;
  font-size: 0.85rem;
}

/* Cookie Banner */
.tk-cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 600px;
  margin: 0 auto;
  background: rgba(15, 23, 42, 0.96);
  border: 1px solid #334155;
  border-radius: var(--tk-radius-md);
  padding: 24px;
  color: #f8fafc;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  z-index: 9999;
  display: none;
  backdrop-filter: blur(12px);
}

.tk-cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.tk-btn-cookie {
  padding: 8px 18px;
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
}

.tk-btn-cookie-accept {
  background: var(--tk-primary);
  color: #ffffff;
}

.tk-btn-cookie-decline {
  background: #334155;
  color: #cbd5e1;
}

/* Responsive */
@media (max-width: 992px) {
  .tk-hero-bento {
    grid-template-columns: 1fr;
  }
  .tk-bento-main {
    grid-column: 1 / 2;
    grid-row: auto;
  }
  .tk-bento-visual {
    grid-column: 1 / 2;
    grid-row: auto;
  }
  .tk-bento-stats {
    grid-column: 1 / 2;
    grid-row: auto;
  }
  .tk-form-wrapper {
    grid-template-columns: 1fr;
  }
  .tk-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .tk-nav-menu {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: #0f172a;
    flex-direction: column;
    padding: 30px;
    border-bottom: 1px solid #1e293b;
    gap: 20px;
  }
  .tk-nav-menu.active {
    display: flex;
  }
  .tk-mobile-toggle {
    display: block;
  }
  .tk-hero-headline {
    font-size: 2.1rem;
  }
  .tk-form-grid {
    grid-template-columns: 1fr;
  }
  .tk-form-full {
    grid-column: 1 / 2;
  }
  .tk-footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
