:root {
  --color-text: #424242;
  --color-text-soft: #666666;
  --color-primary: #ff5757;
  --color-primary-dark: #e34a4a;
  --color-primary-soft: rgba(255, 87, 87, 0.08);
  --color-bg: #ffffff;
  --color-bg-soft: #faf8f8;
  --color-border: rgba(66, 66, 66, 0.12);
  --color-border-strong: rgba(66, 66, 66, 0.18);
  --color-white: #ffffff;
  --shadow-soft: 0 16px 40px rgba(0, 0, 0, 0.06);
  --shadow-hero: 0 30px 80px rgba(0, 0, 0, 0.08);
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1180px;
  --header-height: 84px;
}

/* RESET */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 78px;
}

body {
  margin: 0;
  color: var(--color-text);
  background: var(--color-bg);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.65;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

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

.container-narrow {
  max-width: 860px;
}

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

.mt-2 {
  margin-top: 12px;
}

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

.scroll-mt {
  scroll-margin-top: 0;
}

section[id] {
  scroll-margin-top: 0;
}

article[id] {
  scroll-margin-top: 12px;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.site-header.scrolled {
  border-bottom-color: var(--color-border);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.04);
  background: rgba(255, 255, 255, 0.96);
}

.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo img {
  width: auto;
  max-height: 58px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.nav-item {
  position: relative;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text);
  transition: color 0.2s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 5px;
  height: 2px;
  background: var(--color-primary);
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.nav-link:hover {
  color: var(--color-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-link.active {
  color: var(--color-primary);
}

.nav-link-row {
  display: flex;
  align-items: center;
  gap: 6px;
}

.submenu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  min-width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--color-text);
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.submenu-toggle:hover {
  color: var(--color-primary);
  background: rgba(255, 87, 87, 0.06);
}

.submenu-caret {
  font-size: 0.9rem;
  line-height: 1;
}

.dropdown.open .submenu-caret {
  transform: rotate(180deg);
  display: inline-block;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 270px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  padding: 10px;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.2s ease;
  z-index: 20;
}

.dropdown-menu li a {
  display: block;
  padding: 11px 12px;
  border-radius: 10px;
  color: var(--color-text-soft);
  font-size: 0.92rem;
  transition: 0.2s ease;
}

.dropdown-menu li a:hover {
  background: transparent;
  color: var(--color-primary);
}

@media (min-width: 821px) {
  .dropdown:hover .dropdown-menu,
  .dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

.nav-cta {
  display: flex;
  align-items: center;
}

.menu-toggle {
  display: none;
  border: 0;
  background: none;
  padding: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  margin: 5px 0;
  transition: 0.2s ease;
}

.nav-link-row {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0;
    border-radius: 999px;
  }

  .nav-link-row .nav-link {
    width: auto;
    padding-right: 30px;
    justify-content: center;
  }

  .submenu-toggle {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    min-width: 18px;
    height: 18px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    pointer-events: none;
  }

  .nav-link-row:hover .nav-link,
  .dropdown:hover .submenu-toggle,
  .dropdown:focus-within .submenu-toggle {
    color: var(--color-primary);
  }

  .dropdown:not(.open) .submenu-caret {
    transform: none;
  }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 700;
  transition: 0.2s ease;
  cursor: pointer;
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-1px);
}

.btn-secondary {
  background: var(--color-white);
  color: var(--color-text);
  border-color: var(--color-border-strong);
}

.btn-secondary:hover {
  background: #f6f6f6;
}

.btn-light {
  background: var(--color-white);
  color: var(--color-primary);
  border-color: transparent;
}

.btn-light:hover {
  background: #fff1f1;
}

.btn-secondary-on-accent {
  border-color: rgba(255, 255, 255, 0.35);
  background: transparent;
  color: var(--color-white);
}

.btn-secondary-on-accent:hover {
  background: rgba(255, 255, 255, 0.1);
}

.nav-link:focus-visible,
.dropdown-menu li a:focus-visible,
.btn:focus-visible,
.footer-links a:focus-visible,
.footer-legal a:focus-visible,
.checkbox-label a:focus-visible,
.input:focus-visible,
.textarea:focus-visible,
.menu-toggle:focus-visible,
.submenu-toggle:focus-visible,
.work-nav:focus-visible,
.work-dot:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 72px 0 60px;
  background:
    linear-gradient(
      to right,
      rgba(255, 255, 255, 1) 0%,
      rgba(255, 255, 255, 1) 42%,
      rgba(255, 255, 255, 0.92) 52%,
      rgba(255, 255, 255, 0.72) 64%,
      rgba(255, 255, 255, 0.45) 80%,
      rgba(255, 255, 255, 0.28) 100%
    ),
    url("../images/herobg.png");
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
}

.hero-grid {
  display: block;
  position: relative;
  z-index: 2;
}

.hero-kicker {
  margin: 0 0 14px;
  color: var(--color-primary);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.hero-content {
  max-width: 600px;
}

.hero-content h1 {
  margin: 0 0 18px;
  font-size: clamp(2.7rem, 5.5vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
  max-width: 14ch;
}

.hero-lead {
  margin: 0;
  max-width: 640px;
  font-size: 1.06rem;
  color: var(--color-text-soft);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.hero-tags span {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  font-weight: 600;
  backdrop-filter: blur(8px);
}

/* SECTIONS */
section {
  padding: 72px 0;
}

.section-header {
  max-width: 820px;
  margin: 0 auto 32px;
}

.section-eyebrow {
  margin: 0 0 10px;
  color: var(--color-primary);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.section-title {
  margin: 0 0 12px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.section-subtitle {
  margin: 0;
  color: var(--color-text-soft);
  font-size: 1rem;
  line-height: 1.68;
}

/* FEATURE BLOCKS */
.feature {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.feature-2col {
  align-items: stretch;
}

.feature-content {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 24px;
  padding: 26px;
  box-shadow: var(--shadow-soft);
  height: 100%;
}

.feature-content h3 {
  margin: 0 0 12px;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
}

.feature-content p {
  color: var(--color-text-soft);
  font-size: 0.97rem;
  line-height: 1.68;
  margin: 10 0 12px;
}

.feature-content p:last-child {
  margin-bottom: 0;
}

.feature-consultant {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 22px;
  align-items: center;
}

.feature-media {
  display: flex;
  justify-content: center;
}

.feature-media img {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
  margin-right: 0;
}

/* CHECK LIST */
.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.check-list li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--color-text-soft);
  line-height: 1.58;
}

.check-list li span:first-child {
  color: var(--color-primary);
  font-weight: 800;
}

/* GRIDS */
.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 18px;
}

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

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

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

/* CARDS */
.card,
.testimonial {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover,
.testimonial:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.08);
}

.card h3,
.testimonial-author {
  margin-top: 0;
}

.card h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.card p,
.testimonial p {
  margin: 0;
  color: var(--color-text-soft);
  line-height: 1.68;
}

.card-icon {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 999px;
  background: var(--color-primary-soft);
  color: var(--color-primary);
  font-size: 0.9rem;
  font-weight: 800;
}

.service-card {
  min-height: 100%;
}

.services-list {
  display: grid;
  gap: 14px;
}

.service-line-card {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 18px;
  align-items: center;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 24px;
  padding: 16px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-line-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.08);
}

.service-line-image img {
  width: 100%;
  height: 110px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid var(--color-border);
}

.service-line-content h3 {
  margin: 0 0 8px;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.service-line-content p {
  margin: 0;
  color: var(--color-text-soft);
  line-height: 1.68;
}

/* TESTIMONIALS */
.testimonial p {
  margin-bottom: 16px;
}

.testimonial-author {
  font-weight: 700;
  color: var(--color-text);
}

.testimonial-role {
  font-size: 0.92rem;
  color: var(--color-text-soft);
}

.testimonial-note {
  margin-top: 16px;
  text-align: center;
  color: var(--color-text-soft);
  font-size: 0.92rem;
  font-style: italic;
}

/* CTA */
.cta {
  padding: 36px 0;
}

.cta-box {
  background: linear-gradient(135deg, #ff5757 0%, #ff6d6d 100%);
  color: var(--color-white);
  border-radius: 28px;
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.cta-box h2 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.cta-box p {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.03rem;
  line-height: 1.68;
}

.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

/* CONTACT */
#contact {
  padding: 44px 0 42px;
}

#contact .section-header {
  margin: 0 auto 16px;
}

#contact .section-eyebrow {
  margin-bottom: 8px;
}

#contact .section-title {
  margin-bottom: 6px;
}

#contact .section-subtitle {
  font-size: 0.95rem;
  line-height: 1.58;
}

.form {
  max-width: 700px;
  margin: 0 auto;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow-soft);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form > div,
.form .form-row {
  margin-bottom: 10px;
}

.label {
  display: inline-block;
  margin-bottom: 6px;
  font-size: 0.92rem;
  font-weight: 700;
}

.input,
.textarea {
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 11px 13px;
  font: inherit;
  color: var(--color-text);
  background: var(--color-white);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.input:focus,
.textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(255, 87, 87, 0.12);
}

.textarea {
  min-height: 110px;
  resize: vertical;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 6px;
  font-size: 0.93rem;
  line-height: 1.55;
  color: var(--color-text-soft);
}

.checkbox-label input[type="checkbox"] {
  margin-top: 4px;
  flex-shrink: 0;
}

.checkbox-label span {
  display: inline;
}

.checkbox-label a {
  color: var(--color-primary);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.checkbox-label a:hover {
  border-bottom-color: var(--color-primary);
}

.contact-actions {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

/* FOOTER */
.site-footer {
  margin-top: 0;
  padding: 42px 0 22px;
  background: #fbfbfb;
  border-top: 1px solid var(--color-border);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 88px;
  align-items: start;
}

.footer-grid > div:not(:first-child) {
  text-align: left;
}

.footer-grid > div > *:last-child {
  margin-bottom: 0;
}

.footer-brand {
  max-width: 360px;
}

.footer-brand p,
.footer-links a,
.footer-contact,
.footer-contact a,
.footer-contact span {
  color: var(--color-text-soft);
}

.footer-title {
  margin: 0 0 14px;
  font-size: 1rem;
  letter-spacing: -0.01em;
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a,
.footer-legal a,
.footer-contact a {
  transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-contact a:hover,
.footer-legal a:hover {
  color: var(--color-primary);
}

.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding-top: 18px;
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-bottom p {
  margin: 0;
  color: var(--color-text-soft);
  font-size: 0.94rem;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

.footer-legal a {
  color: var(--color-text-soft);
  font-size: 0.94rem;
}

.footer-social {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 10px;
}

.footer-social a {
  color: #424242; /* matches your base text color */
  font-size: 18px;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-social a:hover {
  color: #ff5757; /* your accent color */
  transform: translateY(-2px); /* subtle lift, not too flashy */
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

/* LEGAL PAGE */
.legal-page {
  padding: 64px 0 76px;
}

.legal-wrap {
  max-width: 860px;
}

.legal-wrap h1 {
  margin: 0 0 18px;
  font-size: clamp(2.2rem, 4vw, 3.3rem);
  letter-spacing: -0.03em;
}

.legal-wrap h2 {
  margin: 24px 0 10px;
  font-size: 1.24rem;
  letter-spacing: -0.02em;
}

.legal-wrap p,
.legal-wrap li {
  color: var(--color-text-soft);
  line-height: 1.68;
}

.legal-wrap ul {
  margin: 8px 0 0 20px;
  padding: 0;
}

.legal-wrap li + li {
  margin-top: 6px;
}

/* BACK TO TOP */
.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 999;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  height: 52px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: var(--shadow-soft);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.2s ease;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* WORK GALLERY */
.work-gallery {
  padding: 72px 0;
  background: var(--color-bg-soft);
}

.work-slider {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: 24px;
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.work-slide {
  display: none;
  position: relative;
}

.work-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
}

.work-slide.active {
  display: block;
}

.work-slide img {
  display: block;
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.work-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  background: rgba(20, 20, 20, 0.45);
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
  z-index: 2;
}

.work-nav:hover {
  background: rgba(20, 20, 20, 0.7);
}

.work-nav.prev {
  left: 18px;
}

.work-nav.next {
  right: 18px;
}

.work-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.work-dot {
  width: 10px;
  height: 10px;
  border: none;
  border-radius: 50%;
  background: #d1d1d1;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease;
}

.work-dot.active {
  background: #ff5757;
  transform: scale(1.15);
}

@media (max-width: 991px) {
  .work-slide img {
    height: 430px;
  }
}

@media (max-width: 767px) {
  .work-gallery {
    padding: 64px 0;
  }

  .work-slide img {
    height: 280px;
  }

  .work-nav {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .work-nav.prev {
    left: 12px;
  }

  .work-nav.next {
    right: 12px;
  }
}

/* RESPONSIVE */
@media (max-width: 1080px) {
  .feature,
  .grid-4 {
    grid-template-columns: 1fr 1fr;
  }

  .grid-3 {
    grid-template-columns: 1fr 1fr;
  }

  .feature-consultant {
    grid-template-columns: 320px 1fr;
  }

  .hero-content h1 {
    max-width: 11ch;
  }

  .footer-grid {
    gap: 56px;
  }
}

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

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px 20px 24px;
    background: var(--color-white);
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-soft);
  }

  .nav.active {
    display: flex;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav-link {
    width: 100%;
    justify-content: space-between;
    border-radius: 12px;
    padding: 12px 14px;
  }

  .nav-link::after {
    left: 14px;
    right: auto;
    width: 28px;
  }

    .nav-link-row {
    position: static;
    display: flex;
    align-items: center;
    width: 100%;
    gap: 8px;
  }

  .nav-link-row .nav-link {
    width: 100%;
    justify-content: flex-start;
    padding: 12px 14px;
    border-radius: 12px;
  }

  .submenu-toggle {
    position: static;
    transform: none;
    pointer-events: auto;
    width: 44px;
    min-width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 12px;
    background: transparent;
    flex-shrink: 0;
  }

  .submenu-toggle:hover {
    background: rgba(255, 87, 87, 0.06);
  }

  .submenu-caret {
    font-size: 0.9rem;
  }


  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    min-width: unset;
    margin-top: 6px;
    box-shadow: none;
    border-radius: 14px;
  }

  .dropdown.open .dropdown-menu {
    display: block;
  }

  .nav-cta {
    margin-top: 14px;
  }

  .feature,
  .grid-2,
  .grid-3,
  .grid-4,
  .form-row,
  .footer-grid,
  .feature-consultant {
    grid-template-columns: 1fr;
  }

  .footer-grid > div {
    text-align: left;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-brand {
    text-align: center;
  }

  .footer-social {
    justify-content: center;
    margin-top: 12px;
  }

  .footer-social a {
    font-size: 20px;
  }
  
  .hero {
    padding-top: 52px;
    min-height: auto;
    background-image:
      linear-gradient(
        to right,
      rgba(255, 255, 255, 1) 0%,
      rgba(255, 255, 255, 1) 42%,
      rgba(255, 255, 255, 0.92) 52%,
      rgba(255, 255, 255, 0.72) 64%,
      rgba(255, 255, 255, 0.45) 80%,
      rgba(255, 255, 255, 0.28) 100%
      ),
      url("../images/herobg-mobile.jpg");
    background-size: cover, cover;
    background-position: left top, center top;
    background-repeat: no-repeat, no-repeat;
  }

  .hero-content {
    max-width: 75%;
  }

  .hero-lead {
    max-width: 100%;
    font-size: 0.98rem;
  }

  .cta-box {
    padding: 32px 22px;
  }

  .back-to-top {
    right: 16px;
    bottom: 16px;
  }

  .header-inner {
    min-height: 74px;
  }

  .logo img {
    max-height: 50px;
  }

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

  .service-line-image img {
    height: 200px;
  }

  .feature {
    gap: 16px;
  }

  .feature-media {
    justify-content: flex-start;
  }

  .feature-media img {
    max-width: 100%;
  }

  .site-footer {
    padding-top: 38px;
  }

  .footer-grid {
    gap: 28px;
  }

  .footer-bottom {
    margin-top: 16px;
    padding-top: 16px;
  }
}