

:root {
  --mk-bg: #f8fafd;
  --mk-text: #1e2a3e;
  --mk-muted: #4b5565;
  --mk-muted-2: #5e6f8d;
  --mk-line: #e6edf4;
  --mk-blue: #2c7be5;
  --mk-orange: #e67e22;
  --mk-orange-hover: #d35400;
  --mk-dark: #0f172a;
  --mk-dark-panel: #1e293b;
  --mk-dark-input: #334155;
  --mk-radius: 24px;
  --mk-radius-lg: 32px;
  --mk-container: 1280px;
  --header-h: 88px;
  --cookie-banner-h: 0px;
}

.theme-maket {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--mk-bg);
  color: var(--mk-text);
  scroll-behavior: smooth;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.theme-maket *,
.theme-maket *::before,
.theme-maket *::after {
  box-sizing: border-box;
}

.theme-maket .container {
  max-width: var(--mk-container);
  margin: 0 auto;
  padding: 0 24px;
}

.theme-maket .site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(248, 250, 253, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--mk-line);
}

.theme-maket .site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

.theme-maket .site-header__logo {
  flex-shrink: 0;
  line-height: 0;
}

.theme-maket .site-header__logo img {
  display: block;
  height: 68px;
  width: auto;
  max-width: min(380px, 58vw);
}

@media (min-width: 900px) {
  .theme-maket {
    --header-h: 112px;
  }

  .theme-maket .site-header__logo img {
    height: 96px;
    max-width: 440px;
  }
}

@media (min-width: 1200px) {
  .theme-maket .site-header__logo img {
    height: 104px;
    max-width: 480px;
  }
}

.theme-maket .site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
  align-items: center;
}

.theme-maket .site-nav a {
  color: var(--mk-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
}

.theme-maket .site-nav a:hover {
  color: var(--mk-blue);
}

.theme-maket .site-nav__cta {
  color: var(--mk-orange) !important;
  font-weight: 600;
}

.theme-maket .burger {
  display: none;
  border: 1px solid var(--mk-line);
  background: #fff;
  border-radius: 12px;
  padding: 0.35rem 0.65rem;
  font-size: 1.25rem;
  cursor: pointer;
}

.theme-maket section.mk-section {
  padding: 80px 0;
  border-bottom: 1px solid var(--mk-line);
}

.theme-maket .mk-section--hero {
  padding-top: calc(var(--header-h) + 40px);
  padding-bottom: 60px;
  border-bottom: none;
}

.theme-maket .section-dark {
  background: var(--mk-dark);
  color: #fff;
  border-bottom: none;
}

.theme-maket .section-dark h2 {
  color: #fff;
}

.theme-maket h1,
.theme-maket h2,
.theme-maket h3 {
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0;
}

.theme-maket h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.theme-maket h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  margin-bottom: 2rem;
  text-align: center;
}

.theme-maket h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.theme-maket .gradient-text {
  background: linear-gradient(135deg, #1e2a3e, #2c7be5);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.theme-maket .lead {
  font-size: 1.2rem;
  color: var(--mk-muted);
  max-width: 700px;
  margin-bottom: 2rem;
}

.theme-maket .note-sm {
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: var(--mk-muted-2);
}

.theme-maket .btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 48px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
  font-family: inherit;
  text-align: center;
}

.theme-maket .btn-primary {
  background: var(--mk-orange);
  color: #fff;
  box-shadow: 0 4px 12px rgba(230, 126, 34, 0.3);
}

.theme-maket .btn-primary:hover {
  background: var(--mk-orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(230, 126, 34, 0.4);
}

.theme-maket .btn-outline {
  border: 2px solid var(--mk-blue);
  color: var(--mk-blue);
  background: transparent;
}

.theme-maket .btn-outline:hover {
  background: var(--mk-blue);
  color: #fff;
}

.theme-maket .text-center {
  text-align: center;
}

.theme-maket .grid-2,
.theme-maket .grid-3 {
  display: grid;
  gap: 2rem;
}

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

.theme-maket .grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.theme-maket .card {
  background: #fff;
  border-radius: var(--mk-radius);
  padding: 1.8rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  border: 1px solid var(--mk-line);
  transition: transform 0.2s;
}

.theme-maket .card:hover {
  transform: translateY(-4px);
}

.theme-maket .card .fa,
.theme-maket .card i {
  color: var(--mk-blue);
}

.theme-maket .compare-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  background: #fff;
  border-radius: var(--mk-radius-lg);
  padding: 2rem;
  border: 1px solid var(--mk-line);
  margin: 1.5rem 0;
}

.theme-maket .compare-col h4 {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.theme-maket .compare-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.theme-maket .compare-col li {
  margin-bottom: 1rem;
  padding-left: 1.8rem;
  position: relative;
}

.theme-maket .compare-col.old li::before {
  content: '✖';
  color: var(--mk-orange);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.theme-maket .compare-col.new li::before {
  content: '✓';
  color: var(--mk-blue);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.theme-maket .highlight-box {
  background: #eff5ff;
  padding: 1.5rem;
  border-radius: var(--mk-radius);
  text-align: center;
  font-weight: 700;
  font-size: 1.2rem;
}

.theme-maket .role-schema {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  background: #f1f5f9;
  border-radius: 40px;
  padding: 2rem;
  margin: 1.5rem 0;
}

.theme-maket .role-node {
  background: #fff;
  border-radius: 60px;
  padding: 0.8rem 1.5rem;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
}

.theme-maket .role-arrow {
  font-size: 1.5rem;
  color: var(--mk-orange);
}

.theme-maket .price-badge {
  background: #f1f5f9;
  border-radius: 40px;
  padding: 0.5rem 1rem;
  display: inline-block;
  font-weight: 500;
}

.theme-maket .badge-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin: 1rem 0;
}

.theme-maket .calculator-card {
  background: #fff;
  border-radius: var(--mk-radius-lg);
  padding: 2rem;
  box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.1);
}

.theme-maket .calculator-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.theme-maket .calculator-main {
  flex: 2;
  min-width: 260px;
}

.theme-maket .calculator-side {
  flex: 1;
  min-width: 220px;
  background: var(--mk-bg);
  border-radius: var(--mk-radius);
  padding: 1rem;
}

.theme-maket .calculator-side table {
  width: 100%;
  font-size: 0.85rem;
  border-collapse: collapse;
}

.theme-maket .calculator-side td {
  padding: 0.35rem 0;
}

.theme-maket .role-input-group {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  margin: 0.75rem 0 1rem;
}

.theme-maket .role-input-group input[type='range'] {
  flex: 1;
  min-width: 140px;
  height: 6px;
  -webkit-appearance: none;
  background: #e2e8f0;
  border-radius: 3px;
}

.theme-maket .role-input-group input[type='range']::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  background: var(--mk-orange);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.theme-maket .role-input-group input[type='number'] {
  width: 100px;
  padding: 0.5rem;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  text-align: center;
  font-size: 1rem;
}

.theme-maket .calc-note {
  font-size: 0.8rem;
  margin-top: 1rem;
  color: var(--mk-muted);
}

.theme-maket .calc-legal {
  font-size: 0.72rem;
  line-height: 1.55;
  margin-top: 0.75rem;
  color: var(--mk-muted-2);
}

.theme-maket .roadmap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  margin: 2rem 0;
}

.theme-maket .roadmap-step {
  flex: 1;
  background: #fff;
  border-radius: 20px;
  padding: 1.5rem;
  text-align: center;
  border: 1px solid var(--mk-line);
  min-width: 180px;
}

.theme-maket .step-number {
  width: 48px;
  height: 48px;
  background: var(--mk-blue);
  color: #fff;
  border-radius: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.3rem;
  margin: 0 auto 1rem;
}

.theme-maket .pill-warn {
  text-align: center;
  background: #fef5e8;
  padding: 1rem;
  border-radius: 60px;
  font-weight: 600;
}

.theme-maket .pill-info {
  text-align: center;
  margin-top: 2rem;
  background: #eff5ff;
  padding: 0.8rem;
  border-radius: 60px;
}

.theme-maket .about-grid {
  align-items: center;
}

.theme-maket .about-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}

.theme-maket .about-list li {
  margin-bottom: 0.65rem;
}

.theme-maket .about-list .fa-check-circle {
  color: var(--mk-blue);
  margin-right: 0.35rem;
}

.theme-maket .about-quote {
  font-style: italic;
  margin: 1rem 0;
}

.theme-maket .about-photo {
  background: #e2e8f0;
  border-radius: var(--mk-radius-lg);
  min-height: 320px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
}

.theme-maket .about-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  object-position: center 15%;
}

.theme-maket .process-badge {
  background: #fef5e8;
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.2rem 0.8rem;
  border-radius: 40px;
  font-weight: 600;
  font-size: 0.9rem;
}

.theme-maket .faq-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.theme-maket .faq-item strong {
  display: block;
  margin-bottom: 0.35rem;
}

.theme-maket .form-panel {
  max-width: 500px;
  margin: 0 auto;
  background: var(--mk-dark-panel);
  padding: 2rem;
  border-radius: var(--mk-radius-lg);
}

.theme-maket .hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.theme-maket .mk-form input,
.theme-maket .mk-form textarea {
  width: 100%;
  padding: 12px 16px;
  margin-bottom: 1rem;
  border-radius: 40px;
  border: none;
  background: var(--mk-dark-input);
  color: #fff;
  font-family: inherit;
  font-size: 1rem;
}

.theme-maket .mk-form textarea {
  border-radius: 20px;
  resize: vertical;
}

.theme-maket .mk-form input::placeholder,
.theme-maket .mk-form textarea::placeholder {
  color: #94a3b8;
}

.theme-maket .mk-form .btn-primary {
  width: 100%;
}

.theme-maket .form-legal {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: #94a3b8;
}

.theme-maket .form-legal a {
  color: #cbd5e1;
}

.theme-maket .form-help {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: #86efac;
}

.theme-maket .form-help.is-error {
  color: #fca5a5;
}

.theme-maket .site-footer {
  background: var(--mk-dark);
  color: #94a3b8;
  padding: 40px 0;
  text-align: center;
}

.theme-maket .site-footer a {
  color: #cbd5e1;
}

.theme-maket .site-footer__links {
  margin-top: 1rem;
  font-size: 0.9rem;
}

.theme-maket .sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
}

.theme-maket .sticky-cta .btn {
  padding: 12px 24px;
  font-size: 0.9rem;
  box-shadow: 0 8px 20px rgba(230, 126, 34, 0.4);
  animation: mk-pulse 2s infinite;
}

@keyframes mk-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(230, 126, 34, 0.5);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(230, 126, 34, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(230, 126, 34, 0);
  }
}

.theme-maket .fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.theme-maket .fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.theme-maket .seo-links {
  margin-top: 2rem;
}

.theme-maket .seo-links__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}

.theme-maket .seo-links a {
  display: block;
  padding: 1rem 1.2rem;
  background: #fff;
  border: 1px solid var(--mk-line);
  border-radius: 16px;
  text-decoration: none;
  color: var(--mk-text);
  font-weight: 600;
  font-size: 0.95rem;
}

.theme-maket .seo-links a:hover {
  border-color: var(--mk-blue);
  color: var(--mk-blue);
}

.theme-maket .cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1100;
  background: #fff;
  border-top: 1px solid var(--mk-line);
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.08);
  padding: 1rem 0;
}

.theme-maket.has-cookie-banner {
  --cookie-banner-h: 88px;
}

.theme-maket.has-cookie-banner .sticky-cta {
  bottom: calc(var(--cookie-banner-h) + 16px);
}

.theme-maket .cookie-banner__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.theme-maket .cookie-banner__text {
  flex: 1;
  min-width: 240px;
  margin: 0;
  font-size: 0.9rem;
  color: var(--mk-muted);
}

.theme-maket .cookie-banner__actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.theme-maket .btn.small {
  padding: 10px 18px;
  font-size: 0.875rem;
}

.theme-maket .btn-secondary {
  background: #fff;
  color: var(--mk-text);
  border: 1px solid var(--mk-line);
}

@media (max-width: 768px) {
  .theme-maket .burger {
    display: block;
  }

  .theme-maket .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: #fff;
    padding: 1rem 24px;
    border-bottom: 1px solid var(--mk-line);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  }

  .theme-maket .site-nav.open {
    display: flex;
  }

  .theme-maket .site-header__inner {
    position: relative;
    flex-wrap: wrap;
  }

  .theme-maket .grid-2,
  .theme-maket .grid-3 {
    grid-template-columns: 1fr;
  }

  .theme-maket .compare-table {
    grid-template-columns: 1fr;
  }

  .theme-maket .roadmap {
    flex-direction: column;
  }

  .theme-maket .role-schema {
    flex-direction: column;
  }

  .theme-maket .role-arrow {
    transform: rotate(90deg);
  }

  .theme-maket section.mk-section {
    padding: 50px 0;
  }

  .theme-maket .sticky-cta {
    left: 16px;
    right: 16px;
  }

  .theme-maket .sticky-cta .btn {
    width: 100%;
  }
}

.theme-maket .legal-page {
  padding: calc(var(--header-h) + 24px) 0 48px;
}

.theme-maket .legal-card {
  max-width: 820px;
  margin: 0 auto;
}

.theme-maket .legal-card h1 {
  font-size: 1.75rem;
  text-align: left;
  margin-bottom: 1rem;
}

.theme-maket .legal-card h2 {
  font-size: 1.15rem;
  text-align: left;
  margin: 1.5rem 0 0.75rem;
}

.theme-maket .legal-card p,
.theme-maket .legal-card li {
  color: var(--mk-muted);
}

.theme-maket .legal-card a {
  color: var(--mk-blue);
}

.theme-maket .seo-page .mk-section--hero h1 {
  text-align: left;
}

@media (prefers-reduced-motion: reduce) {
  .theme-maket .fade-up {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .theme-maket .sticky-cta .btn {
    animation: none;
  }
}
