.elementor-kit-5{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;--e-global-typography-5535e8e-font-family:"ProstoOne";--e-global-typography-5535e8e-font-size:3rem;--e-global-typography-5535e8e-font-weight:700;--e-global-typography-c83476d-font-family:"ProstoOne";--e-global-typography-c83476d-font-size:2.5rem;--e-global-typography-c83476d-font-weight:bold;--e-global-typography-ff8f921-font-family:"ProstoOne";--e-global-typography-ff8f921-font-size:2.3rem;--e-global-typography-ff8f921-font-weight:bold;--e-global-typography-887fca2-font-family:"Catamaran";--e-global-typography-887fca2-font-size:1rem;--e-global-typography-887fca2-font-weight:400;--e-global-typography-2142591-font-family:"Catamaran";--e-global-typography-2142591-font-size:1rem;--e-global-typography-2142591-font-weight:700;--e-global-typography-6e52843-font-family:"Catamaran";--e-global-typography-6e52843-font-size:1rem;--e-global-typography-6e52843-font-weight:500;}.elementor-kit-5 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}.entry-title, .wp-block-post-title{display:var(--page-title-display);}.site-header .site-branding{flex-direction:column;align-items:stretch;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-kit-5{--e-global-typography-c83476d-font-size:1.9rem;--e-global-typography-ff8f921-font-size:1.9rem;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}
/* Start custom CSS */@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap");

:root {
  --bg: #ffffff;
  --soft: #f8fafc;
  --ink: #0f172a;
  --text: #111827;
  --muted: #64748b;
  --line: #dbe3ee;
  --red: #e50914;
  --red-grad: linear-gradient(135deg, #ff1724 0%, #e50914 52%, #ff6b6b 145%);
  --shadow: 0 22px 60px rgba(15, 23, 42, 0.12);
  --radius: 8px;
  --max: 1080px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    linear-gradient(rgba(226, 232, 240, 0.32) 1px, transparent 1px),
    linear-gradient(90deg, rgba(226, 232, 240, 0.32) 1px, transparent 1px),
    #ffffff;
  background-size: 26px 26px;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
}

.nav {
  width: min(var(--max), calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand img {
  width: 142px;
  display: block;
}

.nav-links,
.footer-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}

.nav-links a,
.nav-dropdown summary,
.footer-links a {
  color: #334155;
  font-size: 13px;
  font-weight: 850;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  cursor: pointer;
}

.menu-toggle span {
  width: 17px;
  height: 2px;
  display: block;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--ink);
  transition: transform 160ms ease, opacity 160ms ease;
}

.nav.is-open .menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav.is-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.nav.is-open .menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown summary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  cursor: pointer;
}

.nav-dropdown summary::-webkit-details-marker {
  display: none;
}

.nav-dropdown summary:after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  min-width: 230px;
  display: grid;
  gap: 4px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.nav-dropdown-menu a {
  display: block;
  padding: 11px 12px;
  border-radius: var(--radius);
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
  background: var(--soft);
  outline: 0;
}

.btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  padding: 0 18px;
  font-size: 13px;
  font-weight: 950;
  cursor: pointer;
}

.btn-primary {
  border-color: transparent;
  color: #fff;
  background: var(--red-grad);
  box-shadow: 0 18px 42px rgba(229, 9, 20, 0.28);
}

.hero {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(56px, 8vw, 92px) 0 34px;
  text-align: center;
}

.eyebrow {
  width: fit-content;
  margin: 0 auto 18px;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: #334155;
  font-size: 12px;
  font-weight: 950;
}

h1 {
  max-width: 860px;
  margin: 0 auto;
  color: var(--ink);
  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.98;
  font-weight: 950;
}

.hero p {
  max-width: 720px;
  margin: 22px auto 0;
  color: #475569;
  font-size: 17px;
  line-height: 1.7;
  font-weight: 650;
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.home-hero {
  width: min(var(--max), calc(100% - 32px));
  min-height: 48vh;
  margin: 0 auto;
  display: grid;
  place-items: center;
  padding: clamp(58px, 9vw, 110px) 0 30px;
  text-align: center;
}

.home-hero img {
  width: min(260px, 70vw);
  display: block;
  margin: 0 auto 36px;
}

.home-hero h1 {
  max-width: 780px;
}

.home-hero p {
  max-width: 680px;
  margin: 20px auto 0;
  color: #475569;
  font-size: 17px;
  line-height: 1.7;
  font-weight: 650;
}

.tool-grid {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto 72px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.tool-card {
  position: relative;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

.tool-card:before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: var(--red-grad);
}

.tool-card.is-coming:before {
  background: linear-gradient(135deg, #0f172a, #475569);
}

.tool-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  color: #fff;
  background: var(--red-grad);
  box-shadow: 0 18px 42px rgba(229, 9, 20, 0.22);
}

.tool-card.is-coming .tool-icon {
  background: linear-gradient(135deg, #0f172a, #475569);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.18);
}

.tool-icon svg {
  width: 26px;
  height: 26px;
}

.tool-card h2 {
  margin: 24px 0 12px;
  color: var(--ink);
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.04;
  font-weight: 950;
}

.tool-card p {
  margin: 0;
  color: #475569;
  font-size: 15px;
  line-height: 1.7;
  font-weight: 650;
}

.tool-points {
  display: grid;
  gap: 10px;
  margin: 22px 0 28px;
  padding: 0;
  list-style: none;
}

.tool-points li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 9px;
  color: #475569;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 750;
}

.tool-points li:before {
  content: "";
  width: 16px;
  height: 16px;
  margin-top: 1px;
  border-radius: 50%;
  background: #dcfce7;
  box-shadow: inset 0 0 0 5px #22c55e;
}

.tool-card .btn {
  width: fit-content;
  margin-top: auto;
}

.coming-label {
  width: fit-content;
  margin-top: auto;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
  color: #334155;
  font-size: 13px;
  font-weight: 950;
}

.error-hero {
  width: min(var(--max), calc(100% - 32px));
  min-height: calc(100vh - 152px);
  margin: 0 auto;
  display: grid;
  align-items: center;
  padding: clamp(56px, 8vw, 98px) 0;
}

.error-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.58fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: center;
}

.error-code {
  margin: 0 0 18px;
  color: var(--red);
  font-size: clamp(84px, 13vw, 172px);
  line-height: 0.82;
  font-weight: 950;
}

.error-copy h1 {
  margin: 0;
  text-align: left;
  max-width: 680px;
}

.error-copy p {
  max-width: 620px;
  margin: 20px 0 0;
  color: #475569;
  font-size: 17px;
  line-height: 1.7;
  font-weight: 650;
}

.error-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.error-card {
  padding: clamp(22px, 4vw, 32px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.error-card img {
  width: 160px;
  display: block;
  margin-bottom: 24px;
}

.error-card h2 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.16;
  font-weight: 950;
}

.quick-links {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.quick-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
  color: #334155;
  font-size: 13px;
  font-weight: 900;
}

.quick-links a:after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.content {
  width: min(900px, calc(100% - 32px));
  margin: 0 auto 72px;
  display: grid;
  gap: 16px;
}

.panel {
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.panel h2 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 25px;
  line-height: 1.18;
  font-weight: 950;
}

.panel h3 {
  margin: 22px 0 8px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 950;
}

.panel p,
.panel li {
  color: #475569;
  font-size: 15px;
  line-height: 1.75;
  font-weight: 650;
}

.panel p {
  margin: 0 0 12px;
}

.panel ul {
  margin: 0;
  padding-left: 20px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contact-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.contact-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-card strong {
  color: var(--ink);
  font-size: 17px;
  font-weight: 950;
}

.footer {
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer-inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.footer img {
  width: 124px;
  display: block;
}

@media (max-width: 780px) {
  .nav {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .menu-toggle {
    display: block;
  }

  .nav > .btn-primary,
  .nav-links {
    display: none;
  }

  .nav.is-open .nav-links {
    grid-column: 1 / -1;
    width: 100%;
    display: grid;
    gap: 8px;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  }

  .nav.is-open > .btn-primary {
    grid-column: 1 / -1;
    width: 100%;
    display: inline-flex;
  }

  .footer-links {
    gap: 12px;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown summary {
    width: 100%;
    min-height: 40px;
    justify-content: space-between;
    padding: 0 10px;
    border-radius: var(--radius);
  }

  .nav-dropdown-menu {
    position: static;
    width: 100%;
    margin-top: 10px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .tool-grid {
    grid-template-columns: 1fr;
  }

  .tool-card {
    min-height: 0;
  }

  .error-shell {
    grid-template-columns: 1fr;
  }

  .error-copy h1 {
    text-align: left;
  }

  h1 {
    font-size: clamp(38px, 11vw, 52px);
  }
}/* End custom CSS */