:root {
  --orange: #f47c20;
  --orange-dark: #d9610c;
  --ink: #252525;
  --muted: #666f7a;
  --line: #eceff3;
  --soft: #f7f8fa;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(20, 20, 20, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, "Helvetica Neue", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
}

.narrow {
  max-width: 780px;
  text-align: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.nav-shell {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  min-width: 210px;
  height: 62px;
  padding: 5px 8px;
  border-radius: 7px;
  background: transparent;
  color: var(--ink);
  font-weight: 800;
  letter-spacing: 0;
}

.logo img {
  width: auto;
  max-width: 230px;
  max-height: 54px;
  height: auto;
  object-fit: contain;
  display: block;
}

.site-footer .logo {
  color: var(--white);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 6px;
}

.main-nav a,
.nav-item > a {
  padding: 10px 13px;
  border-radius: 7px;
  color: #3f454b;
  font-size: 14px;
  font-weight: 600;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--orange-dark);
  background: #fff4ea;
}

.nav-item {
  position: relative;
}

.nav-item > a::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-left: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.mega-menu,
.dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 0;
  z-index: 40;
  display: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.mega-menu::before,
.dropdown-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -17px;
  height: 17px;
}

.mega-menu {
  width: min(760px, calc(100vw - 40px));
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 22px;
}

.dropdown-menu {
  width: 300px;
  padding: 12px;
}

.has-mega:hover .mega-menu,
.has-mega:focus-within .mega-menu {
  display: grid;
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu {
  display: grid;
}

.mega-column {
  display: grid;
  gap: 6px;
  align-content: start;
}

.mega-menu a,
.dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 7px;
  color: #3f454b;
  font-size: 14px;
  font-weight: 700;
}

.mega-menu a:hover,
.dropdown-menu a:hover {
  background: #fff4ea;
  color: var(--orange-dark);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--white);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  padding: 88px 0 72px;
  background: linear-gradient(180deg, #fff8f1 0%, #ffffff 76%);
}

.hero-slider {
  position: relative;
  min-height: 610px;
  display: flex;
  align-items: center;
  padding: 96px 0 86px;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(20, 20, 20, 0.9), rgba(20, 20, 20, 0.54)),
    url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.hero-slider::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 7px;
  background: linear-gradient(90deg, var(--orange), #ffb15f, var(--orange-dark));
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 72% 30%, rgba(244, 124, 32, 0.24), transparent 34%);
  pointer-events: none;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 96px 0 86px;
  background-position: center;
  background-size: cover;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.7s ease;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.hero-managed-button {
  margin-bottom: 22px;
}

.hero-center {
  position: relative;
  z-index: 1;
  max-width: 900px;
  color: var(--white);
  text-align: center;
}

.hero-center .eyebrow {
  color: #ffb15f;
}

.hero-center h1 {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.hero-center p {
  max-width: 780px;
  margin: 0 auto 30px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 19px;
}

.hero-search {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  max-width: 690px;
  margin: 0 auto;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
}

.hero-search input {
  width: 100%;
  min-height: 50px;
  padding: 0 16px;
  border: 1px solid transparent;
  border-radius: 7px;
  background: #f6f7f9;
  color: var(--ink);
  font: inherit;
}

.hero-search input:focus {
  outline: 2px solid rgba(244, 124, 32, 0.22);
  border-color: var(--orange);
  background: var(--white);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 52px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--orange-dark);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.04;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.16;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 19px;
  line-height: 1.3;
}

p {
  color: var(--muted);
}

.hero-content p {
  max-width: 620px;
  font-size: 18px;
}

.hero-actions,
.row-heading,
.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-weight: 800;
  transition: 0.2s ease;
  cursor: pointer;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 12px 26px rgba(244, 124, 32, 0.28);
}

.btn-primary:hover {
  background: var(--orange-dark);
}

.btn-outline {
  border-color: #d8dde3;
  background: var(--white);
}

.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange-dark);
}

.btn-small {
  min-height: 38px;
  padding: 0 15px;
  background: #fff4ea;
  color: var(--orange-dark);
  font-size: 14px;
}

.hero-panel {
  padding: 18px;
}

.browser-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.browser-top {
  height: 44px;
  display: flex;
  gap: 7px;
  align-items: center;
  padding: 0 16px;
  border-bottom: 1px solid var(--line);
}

.browser-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d8dde3;
}

.browser-top span:first-child {
  background: var(--orange);
}

.browser-body {
  padding: 24px;
}

.preview-header {
  height: 88px;
  border-radius: 8px;
  background: linear-gradient(135deg, #303030, #555);
  margin-bottom: 18px;
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 18px;
}

.preview-grid div {
  height: 72px;
  border-radius: 8px;
  background: #f2f3f5;
}

.preview-list span {
  display: block;
  height: 12px;
  border-radius: 20px;
  background: #e5e8ec;
  margin-top: 12px;
}

.preview-list span:nth-child(2) {
  width: 82%;
}

.preview-list span:nth-child(3) {
  width: 62%;
}

.stats-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stats-grid div {
  padding: 28px 20px;
  border-left: 1px solid var(--line);
}

.stats-grid div:last-child {
  border-right: 1px solid var(--line);
}

.stats-grid strong {
  display: block;
  color: var(--orange-dark);
  font-size: 30px;
  line-height: 1;
}

.stats-grid span {
  color: var(--muted);
  font-weight: 700;
}

.section {
  padding: 78px 0;
}

.soft {
  background: var(--soft);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading p {
  font-size: 17px;
}

.category-grid,
.service-grid,
.demo-grid,
.process-grid,
.split-cards {
  display: grid;
  gap: 22px;
}

.category-grid {
  grid-template-columns: repeat(6, 1fr);
}

.category-card,
.info-card,
.demo-card,
.process-grid article,
.wide-card,
.contact-form,
.contact-box,
.whatsapp-card,
.highlight-list {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(20, 20, 20, 0.04);
}

.category-card {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  font-weight: 800;
}

.category-card:hover {
  border-color: var(--orange);
  color: var(--orange-dark);
}

.service-grid {
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
}

.info-card {
  padding: 28px;
}

.home-service-card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.home-service-card h3 {
  margin-bottom: 0;
}

.service-card-summary {
  display: -webkit-box;
  margin-bottom: 4px;
  overflow: hidden;
  color: var(--muted);
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
}

.service-card-button {
  width: fit-content;
  margin-top: auto;
  border-color: var(--orange);
  background: transparent;
  color: var(--orange-dark);
}

.service-card-button:hover {
  border-color: var(--orange-dark);
  background: var(--orange);
  color: var(--white);
}

.section-action {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

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

.demo-card {
  overflow: hidden;
}

.category-sections {
  display: grid;
  gap: 54px;
}

.category-block {
  padding-bottom: 54px;
  border-bottom: 1px solid var(--line);
}

.category-block:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.demo-thumb {
  min-height: 160px;
  background: linear-gradient(135deg, #f47c20, #313131);
}

.demo-thumb.logistics { background: linear-gradient(135deg, #f47c20, #3d4b55); }
.demo-thumb.clinic { background: linear-gradient(135deg, #18a999, #f47c20); }
.demo-thumb.realty { background: linear-gradient(135deg, #2f4858, #f47c20); }
.demo-thumb.corporate { background: linear-gradient(135deg, #263238, #f47c20); }
.demo-thumb.ecommerce { background: linear-gradient(135deg, #1b5e6d, #f47c20); }
.demo-thumb.appointment { background: linear-gradient(135deg, #4b3f72, #f47c20); }
.demo-thumb.barber { background: linear-gradient(135deg, #1f1f1f, #b9a071); }
.demo-thumb.beauty { background: linear-gradient(135deg, #f47c20, #b9477d); }
.demo-thumb.law { background: linear-gradient(135deg, #30343f, #f47c20); }
.demo-thumb.construction { background: linear-gradient(135deg, #f47c20, #5a5f66); }
.demo-thumb.cleaning { background: linear-gradient(135deg, #20a4f3, #f47c20); }
.demo-thumb.hotel { background: linear-gradient(135deg, #40513b, #f47c20); }
.demo-thumb.tourism { background: linear-gradient(135deg, #0081a7, #f47c20); }
.demo-thumb.driving { background: linear-gradient(135deg, #303030, #f47c20); }
.demo-thumb.dental { background: linear-gradient(135deg, #22b8cf, #f47c20); }

.demo-body {
  padding: 22px;
}

.demo-body span {
  color: var(--orange-dark);
  font-size: 13px;
  font-weight: 800;
}

.page-hero {
  padding: 78px 0;
  background: linear-gradient(180deg, #fff8f1, #ffffff);
}

.page-hero h1 {
  font-size: clamp(34px, 4vw, 52px);
}

.two-column,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 42px;
  align-items: start;
}

.highlight-list {
  padding: 28px;
}

.highlight-list ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.highlight-list li {
  margin-bottom: 12px;
}

.page-content {
  max-width: 860px;
}

.page-content h2,
.page-content h3 {
  margin-top: 28px;
}

.page-content a {
  color: var(--orange-dark);
  font-weight: 800;
}

.page-content ul,
.page-content ol {
  color: var(--muted);
}

.page-content li {
  margin-bottom: 10px;
}

.service-detail-content {
  max-width: 920px;
  text-align: left;
}

.service-detail-content h2,
.service-detail-content h3,
.service-detail-content h4 {
  margin: 30px 0 14px;
  color: var(--ink);
}

.service-detail-content h2 {
  font-size: clamp(26px, 2.6vw, 38px);
}

.service-detail-content h3 {
  font-size: 24px;
}

.service-detail-content h4 {
  font-size: 20px;
}

.service-detail-content p,
.service-detail-content li {
  color: var(--muted);
  font-size: 17px;
}

.service-detail-content p {
  max-width: 820px;
  margin: 0 0 18px;
}

.service-detail-content .service-detail-lead {
  margin-top: 28px;
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 19px;
  font-weight: 800;
}

.service-detail-content ul,
.service-detail-content ol {
  max-width: 820px;
  margin: 12px 0 26px;
  padding-left: 24px;
  text-align: left;
}

.service-detail-content li {
  margin-bottom: 10px;
  padding-left: 4px;
}

.service-detail-content a {
  color: var(--orange-dark);
  font-weight: 800;
}

.process-grid {
  grid-template-columns: repeat(4, 1fr);
}

.process-grid article {
  padding: 24px;
}

.process-grid span,
.wide-card span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  background: #fff4ea;
  color: var(--orange-dark);
  font-weight: 800;
  margin-bottom: 16px;
}

.filter-panel {
  margin-bottom: 30px;
}

.filter-panel input {
  width: 100%;
  min-height: 52px;
  padding: 0 18px;
  border: 1px solid #d8dde3;
  border-radius: 8px;
  font: inherit;
  margin-bottom: 16px;
}

.filter-panel input:focus,
.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(244, 124, 32, 0.22);
  border-color: var(--orange);
}

.filter-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.filter-buttons button {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--white);
  color: #4c535a;
  font-weight: 800;
  cursor: pointer;
}

.filter-buttons button.active,
.filter-buttons button:hover {
  border-color: var(--orange);
  background: #fff4ea;
  color: var(--orange-dark);
}

.empty-state {
  display: none;
  padding: 24px;
  border: 1px dashed #d8dde3;
  border-radius: 8px;
  text-align: center;
}

.empty-state.visible {
  display: block;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.blog-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(20, 20, 20, 0.04);
}

.blog-thumb {
  display: block;
  min-height: 180px;
  background-color: #f2f3f5;
  background-position: center;
  background-size: cover;
}

.blog-body {
  padding: 24px;
}

.blog-body span {
  display: block;
  margin-bottom: 10px;
  color: var(--orange-dark);
  font-size: 13px;
  font-weight: 800;
}

.blog-body h2 {
  margin-bottom: 12px;
  font-size: 22px;
}

.blog-detail-image {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 28px;
}

.blog-detail img:not(.blog-detail-image) {
  max-width: 100%;
  border-radius: 8px;
}

.service-list {
  display: grid;
  gap: 18px;
}

.wide-card {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  padding: 26px;
}

.wide-card span {
  margin-bottom: 0;
}

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

.contact-form {
  padding: 28px;
}

.contact-form-wrap {
  margin-top: 28px;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 22px;
}

.form-message {
  margin-bottom: 16px;
  padding: 13px 16px;
  border-radius: 7px;
  font-weight: 800;
}

.form-message.success {
  border: 1px solid #bde8cc;
  background: #eefaf2;
  color: #1f7a3a;
}

.form-message.error {
  border: 1px solid #ffd5c8;
  background: #fff1ed;
  color: #b93216;
}

.license-result {
  margin-top: 22px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(20, 20, 20, 0.04);
}

.license-result dl {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 0;
}

.license-result dt {
  color: var(--muted);
  font-weight: 800;
}

.license-result dd {
  margin: 4px 0 0;
  color: var(--ink);
}

.contact-form label {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid #d8dde3;
  border-radius: 8px;
  font: inherit;
  margin-bottom: 16px;
  resize: vertical;
}

.contact-side {
  display: grid;
  gap: 16px;
}

.whatsapp-card {
  display: grid;
  gap: 4px;
  padding: 24px;
  background: #fff4ea;
  border-color: #ffd8b8;
}

.whatsapp-card strong {
  color: var(--orange-dark);
  font-size: 20px;
}

.whatsapp-card span,
.contact-box span {
  color: var(--muted);
}

.contact-box {
  display: grid;
  gap: 4px;
  padding: 22px;
}

.cta-section {
  padding: 36px 0 82px;
}

.cta-box {
  padding: 34px;
  border-radius: 8px;
  background: #292929;
  color: var(--white);
}

.cta-box p {
  margin-bottom: 0;
  color: #d7d7d7;
}

.text-link {
  color: var(--orange-dark);
  font-weight: 800;
}

.site-footer {
  background: #222;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 28px;
  padding: 54px 0 38px;
}

.footer-grid h3 {
  font-size: 16px;
}

.footer-grid a,
.footer-grid p,
.footer-link-button {
  display: block;
  color: #c8c8c8;
  margin: 0 0 10px;
  font-size: 14px;
}

.footer-link-button,
.inline-link-button {
  padding: 0;
  border: 0;
  background: transparent;
  font: inherit;
  cursor: pointer;
  text-align: left;
}

.footer-link-button:hover,
.footer-link-button:focus-visible {
  color: var(--white);
  outline: none;
}

.inline-link-button {
  color: var(--orange-dark);
  font-weight: 800;
}

.inline-link-button:hover,
.inline-link-button:focus-visible,
.cookie-consent-text a:hover,
.cookie-choice-row a:hover {
  text-decoration: underline;
}

.footer-brand p {
  max-width: 310px;
  margin-top: 16px;
}

.footer-brand .logo {
  width: fit-content;
  max-width: 240px;
  min-width: 0;
  overflow: hidden;
  padding: 0;
  height: auto;
}

.footer-brand .logo img {
  max-width: 100%;
  max-height: 68px;
  height: auto;
}

.footer-bottom {
  padding: 18px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #c8c8c8;
  text-align: center;
  font-size: 14px;
}

.footer-legal-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  padding: 0 0 18px;
}

.footer-legal-row a,
.footer-legal-row .footer-link-button {
  margin: 0;
}

.legal-content h2 {
  margin-top: 28px;
}

.legal-content ul {
  color: var(--muted);
}

.floating-contact {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 120;
  display: grid;
  gap: 14px;
}

.float-btn {
  position: relative;
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  color: var(--white);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.float-btn:hover,
.float-btn:focus-visible {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.3);
  filter: saturate(1.08);
  outline: none;
}

.float-btn svg {
  width: 28px;
  height: 28px;
  display: block;
  fill: currentColor;
  stroke: none;
}

.float-btn::before {
  content: attr(data-tooltip);
  position: absolute;
  top: 50%;
  right: calc(100% + 14px);
  min-width: max-content;
  padding: 7px 10px;
  border-radius: 7px;
  background: rgba(30, 30, 30, 0.96);
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  transform: translate(8px, -50%);
  transition: opacity 0.18s ease, transform 0.18s ease;
  white-space: nowrap;
}

.float-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: calc(100% + 7px);
  border: 6px solid transparent;
  border-left-color: rgba(30, 30, 30, 0.96);
  opacity: 0;
  pointer-events: none;
  transform: translate(8px, -50%);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.float-btn:hover::before,
.float-btn:hover::after,
.float-btn:focus-visible::before,
.float-btn:focus-visible::after {
  opacity: 1;
  transform: translate(0, -50%);
}

.float-btn.whatsapp svg {
  width: 31px;
  height: 31px;
}

.float-btn.phone {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
}

.float-btn.whatsapp {
  background: linear-gradient(135deg, #25d366, #128c4a);
}

.cookie-consent {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 180;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 22px;
  max-width: 1080px;
  margin: 0 auto;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 45px rgba(20, 20, 20, 0.16);
}

.cookie-consent-text {
  min-width: 0;
}

.cookie-consent-text strong,
.cookie-choice-row strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 16px;
}

.cookie-consent-text p,
.cookie-choice-row p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.cookie-consent-text a,
.cookie-choice-row a {
  color: var(--orange-dark);
  font-weight: 800;
}

.cookie-consent-actions,
.cookie-modal-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-btn,
.cookie-preferences-open,
.cookie-modal-close {
  font: inherit;
}

.cookie-btn {
  min-width: 118px;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-weight: 800;
  cursor: pointer;
  transition: 0.2s ease;
}

.cookie-btn-primary,
.cookie-btn-neutral {
  border-color: var(--orange);
  background: #fff4ea;
  color: var(--orange-dark);
  box-shadow: none;
}

.cookie-btn-primary:hover,
.cookie-btn-primary:focus-visible,
.cookie-btn-neutral:hover,
.cookie-btn-neutral:focus-visible,
.cookie-btn-outline:hover,
.cookie-btn-outline:focus-visible {
  border-color: var(--orange);
  color: var(--orange-dark);
  outline: none;
}

.cookie-btn-primary:hover,
.cookie-btn-primary:focus-visible,
.cookie-btn-neutral:hover,
.cookie-btn-neutral:focus-visible {
  background: #ffe6d1;
}

.cookie-btn-outline {
  border-color: #d8dde3;
  background: var(--white);
  color: var(--ink);
}

.cookie-preferences-open {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 130;
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid #d8dde3;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.94);
  color: #3f454b;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 12px 26px rgba(20, 20, 20, 0.12);
  cursor: pointer;
}

.cookie-preferences-open:hover,
.cookie-preferences-open:focus-visible {
  border-color: var(--orange);
  color: var(--orange-dark);
  outline: none;
}

.cookie-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(20, 20, 20, 0.42);
}

.cookie-modal {
  position: relative;
  width: min(620px, 100%);
  max-height: calc(100vh - 48px);
  overflow: auto;
  padding: 28px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.26);
}

.cookie-modal:focus {
  outline: 2px solid rgba(244, 124, 32, 0.24);
}

.cookie-modal h2 {
  margin-bottom: 18px;
  font-size: 30px;
}

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--white);
  color: var(--ink);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.cookie-choice-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.cookie-required {
  padding: 7px 10px;
  border-radius: 7px;
  background: #f7f8fa;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.cookie-toggle-row {
  cursor: pointer;
}

.cookie-marketing-toggle {
  width: 48px;
  height: 26px;
  accent-color: var(--orange);
}

@media (max-width: 960px) {
  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .main-nav.open {
    display: flex;
  }

  .nav-item {
    position: static;
  }

  .nav-item > a {
    display: block;
  }

  .mega-menu,
  .dropdown-menu {
    position: static;
    width: 100%;
    margin: 4px 0 10px;
    box-shadow: none;
  }

  .mega-menu::before,
  .dropdown-menu::before {
    display: none;
  }

  .main-nav.open .mega-menu {
    display: grid;
    grid-template-columns: 1fr;
    padding: 12px;
  }

  .main-nav.open .dropdown-menu {
    display: grid;
  }

  .hero-grid,
  .two-column,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .service-grid,
  .demo-grid,
  .blog-grid,
  .process-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1140px);
  }

  .hero,
  .page-hero {
    padding: 54px 0;
  }

  .hero-slider {
    min-height: 560px;
    padding: 70px 0 62px;
  }

  .hero-slide {
    padding: 70px 0 62px;
  }

  .hero-search {
    grid-template-columns: 1fr;
  }

  .hero-search .btn {
    width: 100%;
  }

  .logo {
    min-width: 150px;
    max-width: 178px;
    height: 54px;
  }

  .logo img {
    max-width: 170px;
    max-height: 46px;
  }

  .floating-contact {
    right: 14px;
    bottom: 14px;
    gap: 11px;
  }

  .cookie-consent {
    left: 14px;
    right: 14px;
    bottom: 14px;
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 16px;
  }

  .cookie-consent-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

  .cookie-consent-actions .cookie-btn {
    width: 100%;
  }

  .cookie-consent-actions .cookie-btn-outline {
    grid-column: 1 / -1;
  }

  .cookie-preferences-open {
    left: 14px;
    bottom: 14px;
    max-width: calc(100% - 112px);
  }

  .float-btn {
    width: 52px;
    height: 52px;
  }

  .float-btn svg {
    width: 24px;
    height: 24px;
  }

  .float-btn.whatsapp svg {
    width: 27px;
    height: 27px;
  }

  .float-btn::before,
  .float-btn::after {
    display: none;
  }

  .section {
    padding: 56px 0;
  }

  .hero-actions,
  .cta-box {
    align-items: stretch;
  }

  .hero-actions .btn,
  .cta-box .btn {
    width: 100%;
  }

  .category-grid,
  .service-grid,
  .demo-grid,
  .process-grid,
  .split-cards,
  .blog-grid,
  .footer-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid div,
  .stats-grid div:last-child {
    border-right: 1px solid var(--line);
  }

  .wide-card {
    grid-template-columns: 1fr;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .license-result dl {
    grid-template-columns: 1fr;
  }

  .floating-contact {
    right: 14px;
    bottom: 14px;
  }

  .float-btn {
    width: 52px;
    height: 52px;
  }

  .cookie-modal-backdrop {
    padding: 14px;
  }

  .cookie-modal {
    padding: 22px 16px 16px;
  }

  .cookie-modal h2 {
    padding-right: 34px;
    font-size: 25px;
  }

  .cookie-choice-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .cookie-modal-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .cookie-modal-actions .cookie-btn {
    width: 100%;
  }

  .cookie-modal-actions .cookie-btn-outline {
    grid-column: 1 / -1;
  }
}
