:root {
  --biz-bg: #f4f8fb;
  --biz-surface: rgba(255, 255, 255, 0.88);
  --biz-surface-strong: rgba(255, 255, 255, 0.96);
  --biz-border: rgba(18, 48, 70, 0.14);
  --biz-border-strong: rgba(18, 48, 70, 0.24);
  --biz-shadow: 0 24px 56px rgba(16, 43, 62, 0.12);
  --biz-shadow-hover: 0 30px 64px rgba(16, 43, 62, 0.18);
  --biz-ink: #123046;
  --biz-muted: #4c677b;
  --biz-accent: #0c9e8d;
  --biz-accent-2: #e27e3a;
  --biz-radius-xl: 28px;
  --biz-radius-lg: 20px;
  --biz-radius-md: 14px;
  --biz-content: 1140px;
}

html,
body {
  background: radial-gradient(circle at 8% 8%, #ffffff 0%, var(--biz-bg) 38%, #e6eff5 100%);
}

body {
  color: var(--biz-ink);
  font-family: "Lato", "Open Sans", sans-serif;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body::before,
body::after {
  content: "";
  position: fixed;
  z-index: -2;
  width: 44vmax;
  height: 44vmax;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(70px);
  opacity: 0.42;
}

body::before {
  top: -18vmax;
  left: -15vmax;
  background: radial-gradient(circle, rgba(12, 158, 141, 0.42), rgba(12, 158, 141, 0));
}

body::after {
  right: -18vmax;
  bottom: -18vmax;
  background: radial-gradient(circle, rgba(226, 126, 58, 0.34), rgba(226, 126, 58, 0));
}

h1,
h2,
h3,
h4,
h5,
h6,
.title,
.navbar-item strong {
  font-family: "Montserrat", "Raleway", sans-serif;
  color: var(--biz-ink);
  letter-spacing: -0.02em;
}

.subtitle,
p,
li,
.content,
label,
input,
textarea,
select {
  color: var(--biz-muted);
}

body > .hero-v2,
body > .services-block,
body > section.section,
body > .section,
body > .faq-section,
body > .section-block,
body > .booking-form-advanced-section,
body > .hero-super-responsive {
  position: relative;
  width: min(var(--biz-content), calc(100% - 2.4rem));
  margin: 1.3rem auto;
  border-radius: var(--biz-radius-xl);
  border: 1px solid var(--biz-border);
  box-shadow: var(--biz-shadow);
  overflow: clip;
  isolation: isolate;
  backdrop-filter: blur(4px);
}

body > .hero-v2::before,
body > .services-block::before,
body > section.section::before,
body > .section::before,
body > .faq-section::before,
body > .section-block::before,
body > .booking-form-advanced-section::before,
body > .hero-super-responsive::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0));
  z-index: -1;
}

body > .hero-v2,
body > .services-block,
body > .section,
body > section.section,
body > .faq-section,
body > .section-block {
  background-color: var(--biz-surface);
}

body > .hero-v2:hover,
body > .services-block:hover,
body > .section:hover,
body > section.section:hover,
body > .faq-section:hover,
body > .section-block:hover {
  border-color: var(--biz-border-strong);
  box-shadow: var(--biz-shadow-hover);
}

body > .section .container,
body > section.section .container,
body > .hero-v2 .container,
body > .hero-super-responsive .container,
.services-block .services-inner,
.faq-section .container,
.section-block .container {
  width: min(100%, 1080px);
  margin-inline: auto;
  padding-inline: clamp(1rem, 2.8vw, 2.2rem);
}

.section {
  padding: clamp(2.4rem, 4vw, 4rem) 0;
}

.hero-v2 {
  min-height: clamp(560px, 82vh, 900px);
}

.hero-title,
.hero-super-title {
  text-wrap: balance;
  line-height: 1.08;
}

.hero-subtitle,
.hero-super-subtitle {
  max-width: 66ch;
  margin-inline: auto;
}

.hero-buttons,
.hero-super-cta,
.columns-block__button,
.portfolio-card__actions,
.contact-form-submit-row {
  gap: 0.9rem;
}

.button,
.hero-btn,
.hero-cta,
.element-button,
.booking-confirmation-btn,
.contact-form-submit-btn,
a[class*="button"] {
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.button.is-primary,
.hero-btn-solid,
.booking-confirmation-btn,
.contact-form-submit-btn {
  background: linear-gradient(135deg, var(--biz-accent), #12b39f);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 12px 24px rgba(12, 158, 141, 0.28);
}

.button.is-primary:hover,
.hero-btn-solid:hover,
.booking-confirmation-btn:hover,
.contact-form-submit-btn:hover,
.button:hover,
.hero-btn:hover,
.hero-cta:hover,
.element-button:hover,
a[class*="button"]:hover {
  transform: translateY(-2px);
  filter: saturate(1.05);
  box-shadow: 0 16px 30px rgba(16, 43, 62, 0.22);
}

.box,
.card,
.feature-card,
.service-card,
.portfolio-card,
.pricing-card,
.faq-item,
.testimonial-item,
.contact-form,
.booking-form,
.booking-form-advanced,
.social-proof-item,
.case-card,
.columns-block__item,
.team-member,
.stat-item {
  border-radius: var(--biz-radius-lg);
  border: 1px solid rgba(18, 48, 70, 0.1);
  box-shadow: 0 12px 28px rgba(20, 49, 70, 0.09);
  background: var(--biz-surface-strong);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.box:hover,
.card:hover,
.feature-card:hover,
.service-card:hover,
.portfolio-card:hover,
.pricing-card:hover,
.faq-item:hover,
.testimonial-item:hover,
.columns-block__item:hover,
.team-member:hover,
.stat-item:hover {
  transform: translateY(-4px);
  border-color: rgba(12, 158, 141, 0.36);
  box-shadow: 0 20px 42px rgba(12, 158, 141, 0.16);
}

input,
textarea,
select,
.select select,
.input,
.textarea {
  border-radius: 12px;
  border: 1px solid rgba(18, 48, 70, 0.2);
  box-shadow: none;
  transition: border-color 0.24s ease, box-shadow 0.24s ease;
}

input:focus,
textarea:focus,
select:focus,
.select select:focus,
.input:focus,
.textarea:focus {
  outline: none;
  border-color: rgba(12, 158, 141, 0.78);
  box-shadow: 0 0 0 4px rgba(12, 158, 141, 0.18);
}

.navbar,
.navbar-outer {
  backdrop-filter: blur(12px);
}

.navbar[data-navbar-block="true"],
.navbar-outer {
  border-bottom: 1px solid rgba(18, 48, 70, 0.16);
}

.navbar[data-navbar-block="true"] .navbar-item {
  border-radius: 999px;
  margin: 0 2px;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.navbar[data-navbar-block="true"] .navbar-item:hover {
  background: rgba(12, 158, 141, 0.13);
  transform: translateY(-1px);
}

.navbar-outer.is-scrolled-soft,
.navbar.is-scrolled-soft {
  box-shadow: 0 10px 24px rgba(9, 33, 49, 0.16);
  border-bottom-color: rgba(12, 158, 141, 0.3);
}

.ux-reveal {
  opacity: 0;
  transform: translateY(26px) scale(0.995);
  transition: opacity 0.72s cubic-bezier(0.22, 1, 0.36, 1), transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--ux-delay, 0s);
}

.ux-reveal.is-inview {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.biz-tilt {
  transform-style: preserve-3d;
  will-change: transform;
}

[data-theme="dark"] body,
body[data-theme="dark"] {
  --biz-bg: #0f1b22;
  --biz-surface: rgba(13, 28, 36, 0.82);
  --biz-surface-strong: rgba(17, 33, 43, 0.93);
  --biz-border: rgba(181, 214, 228, 0.22);
  --biz-border-strong: rgba(181, 214, 228, 0.36);
  --biz-shadow: 0 26px 56px rgba(0, 0, 0, 0.44);
  --biz-shadow-hover: 0 30px 70px rgba(0, 0, 0, 0.52);
  --biz-ink: #e8f2f9;
  --biz-muted: #b7c8d4;
  background: radial-gradient(circle at 12% 12%, #1b333f 0%, #0f1b22 52%, #0b151b 100%);
}

[data-theme="dark"] .button.is-primary,
body[data-theme="dark"] .button.is-primary {
  color: #062923;
}

@media (max-width: 960px) {
  body > .hero-v2,
  body > .services-block,
  body > section.section,
  body > .section,
  body > .faq-section,
  body > .section-block,
  body > .booking-form-advanced-section,
  body > .hero-super-responsive {
    width: min(100%, calc(100% - 1.2rem));
    margin: 0.75rem auto;
    border-radius: 18px;
  }

  .hero-v2 {
    min-height: auto;
  }

  .section {
    padding: clamp(1.9rem, 6vw, 2.8rem) 0;
  }

  .box,
  .card,
  .feature-card,
  .service-card,
  .portfolio-card,
  .pricing-card,
  .faq-item,
  .testimonial-item,
  .columns-block__item,
  .team-member,
  .stat-item {
    border-radius: 14px;
  }
}

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