:root {
  --gw-black: #050505;
  --gw-black-soft: #0b0b0d;
  --gw-charcoal: #121216;
  --gw-panel: #17171b;
  --gw-silver: #bcc0c7;
  --gw-silver-light: #eef0f3;
  --gw-white: #ffffff;
  --gw-red: #d80718;
  --gw-red-dark: #a5000d;
  --gw-border: rgba(255, 255, 255, 0.12);
  --gw-muted: #a7a9b0;
  --gw-radius: 18px;
  --gw-radius-small: 10px;
  --gw-shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
  --gw-container: 1180px;
  --gw-header-height: 86px;
  --gw-transition: 220ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--gw-black);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--gw-black);
  color: var(--gw-silver-light);
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.gw-menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--gw-white);
  outline-offset: 4px;
}

.gw-skip-link {
  position: fixed;
  z-index: 99999;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  transform: translateY(-160%);
  border-radius: 8px;
  background: var(--gw-white);
  color: var(--gw-black);
  font-weight: 800;
  transition: transform var(--gw-transition);
}

.gw-skip-link:focus {
  transform: translateY(0);
}

.gw-site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  height: var(--gw-header-height);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.38));
  transition: background var(--gw-transition), height var(--gw-transition), box-shadow var(--gw-transition);
}

.gw-site-header.is-scrolled {
  height: 74px;
  background: rgba(5, 5, 5, 0.96);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(14px);
}

.gw-header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 48px), var(--gw-container));
  height: 100%;
  margin-inline: auto;
}

.gw-brand,
.gw-brand .custom-logo-link {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.gw-brand img,
.gw-brand .custom-logo {
  display: block;
  width: auto;
  height: 54px;
  max-width: 250px;
  object-fit: contain;
}

.gw-primary-navigation,
.gw-menu {
  display: flex;
  align-items: center;
}

.gw-menu {
  gap: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.gw-menu a {
  position: relative;
  color: var(--gw-silver-light);
  font-size: 14px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.gw-menu a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  background: var(--gw-red);
  transition: transform var(--gw-transition);
}

.gw-menu a:hover::after,
.gw-menu a:focus-visible::after,
.gw-menu .current-menu-item > a::after {
  transform: scaleX(1);
  transform-origin: left;
}

.gw-header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin-left: 32px;
  padding: 10px 19px;
  border: 1px solid var(--gw-red);
  border-radius: 999px;
  background: var(--gw-red);
  color: var(--gw-white);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform var(--gw-transition), background var(--gw-transition), box-shadow var(--gw-transition);
}

.gw-header-cta:hover {
  transform: translateY(-2px);
  background: var(--gw-red-dark);
  box-shadow: 0 10px 30px rgba(216, 7, 24, 0.32);
}

.gw-menu-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  min-width: 48px;
  min-height: 48px;
  padding: 8px;
  border: 0;
  background: transparent;
  color: var(--gw-white);
  font: inherit;
  cursor: pointer;
}

.gw-menu-toggle-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.gw-menu-toggle-lines {
  display: grid;
  gap: 7px;
  width: 24px;
}

.gw-menu-toggle-lines span {
  display: block;
  width: 100%;
  height: 2px;
  background: currentColor;
  transition: transform var(--gw-transition);
}

.gw-menu-toggle[aria-expanded="true"] .gw-menu-toggle-lines span:first-child {
  transform: translateY(4.5px) rotate(45deg);
}

.gw-menu-toggle[aria-expanded="true"] .gw-menu-toggle-lines span:last-child {
  transform: translateY(-4.5px) rotate(-45deg);
}

.gw-site-main {
  min-height: 70vh;
}

.gw-section,
.gw-page-hero,
.gw-hero,
.gw-trust-strip,
.gw-cta-section {
  --padding-left: 24px;
  --padding-right: 24px;
  position: relative;
  width: 100%;
  padding-inline: max(24px, calc((100vw - var(--gw-container)) / 2));
}

.gw-section {
  padding-top: clamp(78px, 10vw, 132px);
  padding-bottom: clamp(78px, 10vw, 132px);
  background: var(--gw-black);
}

.gw-section-alt {
  background: var(--gw-black-soft);
}

.gw-section-redline {
  border-top: 1px solid rgba(216, 7, 24, 0.36);
}

.gw-section-heading {
  max-width: 790px;
  margin-bottom: clamp(36px, 5vw, 62px);
}

.gw-section-heading.gw-centered {
  margin-inline: auto;
  text-align: center;
}

.gw-kicker .elementor-heading-title,
.gw-kicker {
  margin: 0 0 18px;
  color: var(--gw-red) !important;
  font-size: 13px !important;
  font-weight: 850;
  letter-spacing: 0.2em;
  line-height: 1.3;
  text-transform: uppercase;
}

.gw-display-heading .elementor-heading-title,
.gw-display-heading {
  margin: 0;
  color: var(--gw-white) !important;
  font-size: clamp(42px, 7vw, 86px) !important;
  font-weight: 780;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.gw-page-title .elementor-heading-title,
.gw-page-title {
  margin: 0;
  color: var(--gw-white) !important;
  font-size: clamp(40px, 6vw, 72px) !important;
  font-weight: 780;
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.gw-section-title .elementor-heading-title,
.gw-section-title {
  margin: 0;
  color: var(--gw-white) !important;
  font-size: clamp(34px, 4.5vw, 58px) !important;
  font-weight: 740;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.gw-card-title .elementor-heading-title,
.gw-card-title {
  margin: 0;
  color: var(--gw-white) !important;
  font-size: clamp(22px, 2vw, 29px) !important;
  font-weight: 730;
  line-height: 1.2;
}

.gw-lead,
.gw-lead .elementor-widget-container {
  max-width: 720px;
  color: #d3d5da;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.65;
}

.gw-body-copy,
.gw-body-copy .elementor-widget-container {
  color: var(--gw-muted);
}

.gw-body-copy p:last-child,
.gw-lead p:last-child {
  margin-bottom: 0;
}

.gw-hero {
  display: flex;
  align-items: center;
  min-height: max(720px, 100svh);
  padding-top: calc(var(--gw-header-height) + 70px);
  padding-bottom: 80px;
  overflow: hidden;
  isolation: isolate;
  background: #08090b center/cover no-repeat;
}

.gw-hero::after {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  height: 22%;
  content: "";
  pointer-events: none;
  background: linear-gradient(transparent, var(--gw-black));
}

.gw-video-widget {
  position: absolute !important;
  z-index: -1 !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
}

.gw-video-widget > .elementor-widget-container,
.gw-video-shell,
.gw-hero-video {
  width: 100%;
  height: 100%;
}

.gw-video-shell {
  position: absolute;
  inset: 0;
  background: #0a0a0c center/cover no-repeat;
}

.gw-hero-video {
  display: block;
  object-fit: cover;
  object-position: center;
}

.gw-hero-video.is-poster-only {
  opacity: 0;
}

.gw-video-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.38) 48%, rgba(0, 0, 0, 0.16) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.14), rgba(0, 0, 0, 0.1));
}

.gw-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  width: min(820px, 100%);
}

.gw-hero-content .elementor-heading-title,
.gw-hero-content .elementor-widget-text-editor,
.gw-mobile-call {
  text-shadow: 0 3px 22px rgba(0, 0, 0, 0.88);
}

.gw-hero-content .gw-lead {
  margin-top: 28px;
}

.gw-hero-actions,
.gw-button-row {
  display: flex;
  align-items: center;
  flex-flow: row wrap !important;
  gap: 14px;
  margin-top: 34px;
}

.gw-btn .elementor-button,
.gw-btn > .elementor-widget-container .elementor-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform var(--gw-transition), border-color var(--gw-transition), background var(--gw-transition), box-shadow var(--gw-transition);
}

.gw-btn .elementor-button:hover {
  transform: translateY(-2px);
}

.gw-btn-primary .elementor-button {
  border-color: var(--gw-red) !important;
  background: var(--gw-red) !important;
  color: var(--gw-white) !important;
  box-shadow: 0 14px 32px rgba(216, 7, 24, 0.26);
}

.gw-btn-primary .elementor-button:hover {
  background: var(--gw-red-dark) !important;
  box-shadow: 0 18px 40px rgba(216, 7, 24, 0.34);
}

.gw-btn-secondary .elementor-button {
  border-color: rgba(255, 255, 255, 0.42) !important;
  background: rgba(0, 0, 0, 0.2) !important;
  color: var(--gw-white) !important;
  backdrop-filter: blur(8px);
}

.gw-btn-secondary .elementor-button:hover {
  border-color: var(--gw-white) !important;
  background: rgba(255, 255, 255, 0.1) !important;
}

.gw-mobile-call {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 26px;
  color: var(--gw-white);
  font-size: 15px;
  font-weight: 760;
  text-decoration: none;
}

.gw-mobile-call::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gw-red);
  box-shadow: 0 0 0 7px rgba(216, 7, 24, 0.13);
  content: "";
}

.gw-trust-strip {
  z-index: 3;
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  padding-top: 0;
  padding-bottom: 0;
  border-top: 1px solid var(--gw-border);
  border-bottom: 1px solid var(--gw-border);
  background: var(--gw-border);
}

.gw-trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 116px;
  padding: 24px;
  background: var(--gw-black-soft);
  text-align: center;
}

.gw-trust-item .elementor-heading-title {
  color: var(--gw-silver-light);
  font-size: 13px !important;
  font-weight: 840;
  letter-spacing: 0.15em;
  line-height: 1.45;
  text-transform: uppercase;
}

.gw-grid-2,
.gw-grid-3,
.gw-grid-4 {
  display: grid !important;
  gap: 22px;
}

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

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

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

.gw-card,
.gw-value-card,
.gw-contact-card,
.gw-service-detail {
  position: relative;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  padding: clamp(26px, 3.3vw, 40px);
  overflow: hidden;
  border: 1px solid var(--gw-border);
  border-radius: var(--gw-radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.04);
  transition: transform var(--gw-transition), border-color var(--gw-transition), background var(--gw-transition), box-shadow var(--gw-transition);
}

.gw-card::before,
.gw-service-detail::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--gw-red);
  content: "";
  transition: width 360ms ease;
}

.gw-card:hover,
.gw-service-detail:hover {
  transform: translateY(-6px);
  border-color: rgba(216, 7, 24, 0.55);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(216, 7, 24, 0.025));
  box-shadow: var(--gw-shadow);
}

.gw-card:hover::before,
.gw-service-detail:hover::before {
  width: 100%;
}

.gw-card-number .elementor-heading-title,
.gw-card-number {
  margin: 0 0 26px;
  color: var(--gw-red);
  font-size: 13px !important;
  font-weight: 850;
  letter-spacing: 0.18em;
}

.gw-card .gw-body-copy,
.gw-value-card .gw-body-copy,
.gw-service-detail .gw-body-copy {
  margin-top: 16px;
}

.gw-card-image,
.gw-service-image {
  width: 100%;
  margin-bottom: 24px;
  overflow: hidden;
  border-radius: 12px;
  background: #0a0a0c;
}

.gw-card-image img,
.gw-service-image img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 600ms ease;
}

.gw-card:hover .gw-card-image img,
.gw-service-detail:hover .gw-service-image img {
  transform: scale(1.035);
}

.gw-text-link .elementor-button {
  min-height: auto;
  margin-top: auto;
  padding: 22px 0 0;
  background: transparent !important;
  color: var(--gw-white) !important;
  font-size: 13px;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.gw-text-link .elementor-button::after {
  margin-left: 10px;
  color: var(--gw-red);
  content: "→";
  transition: transform var(--gw-transition);
}

.gw-text-link .elementor-button:hover::after {
  transform: translateX(5px);
}

.gw-split {
  display: grid !important;
  align-items: center;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(46px, 8vw, 104px);
}

.gw-split-reverse {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}

.gw-visual-panel {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  border: 1px solid var(--gw-border);
  border-radius: var(--gw-radius);
  background:
    linear-gradient(145deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.72)),
    var(--gw-visual-image, linear-gradient(130deg, #29292e, #09090a));
  background-position: center;
  background-size: cover;
  box-shadow: var(--gw-shadow);
}

.gw-visual-panel::before {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: calc(var(--gw-radius) - 6px);
  content: "";
  pointer-events: none;
}

.gw-panel-image {
  position: absolute !important;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
}

.gw-panel-image > .elementor-widget-container,
.gw-panel-image img {
  width: 100%;
  height: 100%;
}

.gw-panel-image img {
  display: block;
  object-fit: cover;
}

.gw-visual-panel::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(0, 0, 0, 0.76));
  content: "";
  pointer-events: none;
}

.gw-visual-car {
  --gw-visual-image: url("../images/hero-poster.webp");
}

.gw-owner-visual {
  min-height: 680px;
}

.gw-owner-visual .gw-panel-image img {
  object-position: center center;
}

.gw-owner-role .elementor-heading-title,
.gw-owner-role {
  margin: 18px 0 24px;
  color: var(--gw-silver) !important;
  font-size: clamp(18px, 2vw, 24px) !important;
  font-weight: 650;
  line-height: 1.35;
}

.gw-owner-copy .gw-button-row {
  margin-top: 34px;
}

.gw-visual-miami {
  --gw-visual-image:
    radial-gradient(circle at 68% 35%, rgba(216, 7, 24, 0.32), transparent 20%),
    linear-gradient(125deg, #26272d 0%, #0d0e11 48%, #080808 100%);
}

.gw-visual-label {
  position: absolute !important;
  z-index: 3;
  right: 36px;
  bottom: 34px;
  left: 36px;
  padding: 20px 22px;
  border-left: 3px solid var(--gw-red);
  background: rgba(0, 0, 0, 0.72);
  color: var(--gw-white);
  backdrop-filter: blur(12px);
}

.gw-miami-banner {
  width: 100%;
  margin-bottom: 38px;
  overflow: hidden;
  border: 1px solid var(--gw-border);
  border-radius: var(--gw-radius);
  box-shadow: var(--gw-shadow);
}

.gw-miami-banner img {
  display: block;
  width: 100%;
  max-height: 560px;
  aspect-ratio: 16 / 7;
  object-fit: cover;
}

.gw-visual-label .elementor-widget-container {
  font-size: 15px;
  font-weight: 760;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.gw-feature-list {
  display: grid !important;
  gap: 0;
  margin-top: 30px;
}

.gw-feature-row {
  display: grid !important;
  grid-template-columns: 58px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-top: 1px solid var(--gw-border);
}

.gw-feature-index .elementor-heading-title {
  color: var(--gw-red);
  font-size: 14px !important;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.gw-feature-copy .elementor-heading-title {
  margin: 0 0 5px;
  color: var(--gw-white);
  font-size: 20px !important;
}

.gw-feature-copy .gw-body-copy {
  font-size: 15px;
}

.gw-page-hero {
  display: flex;
  align-items: flex-end;
  min-height: 590px;
  padding-top: calc(var(--gw-header-height) + 110px);
  padding-bottom: 90px;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 30%, rgba(216, 7, 24, 0.14), transparent 27%),
    linear-gradient(132deg, #121216, #050505 62%);
}

.gw-page-hero::before {
  position: absolute;
  top: 0;
  right: -10%;
  width: 58%;
  height: 100%;
  border-left: 1px solid rgba(255, 255, 255, 0.07);
  content: "";
  transform: skewX(-18deg);
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.03), transparent);
}

.gw-page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.gw-page-hero .gw-lead {
  margin-top: 24px;
}

.gw-stat-band {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 44px;
}

.gw-stat-item {
  padding: 22px 0 0;
  border-top: 2px solid var(--gw-red);
}

.gw-stat-item .elementor-heading-title {
  color: var(--gw-white);
  font-size: 17px !important;
  font-weight: 730;
}

.gw-service-detail {
  min-height: 360px;
}

.gw-use-cases {
  margin-top: 18px;
  color: var(--gw-silver-light);
  font-size: 14px;
  font-weight: 680;
}

.gw-use-cases strong {
  color: var(--gw-white);
}

.gw-cta-section {
  display: grid !important;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 48px;
  padding-top: clamp(66px, 8vw, 100px);
  padding-bottom: clamp(66px, 8vw, 100px);
  border-top: 1px solid rgba(216, 7, 24, 0.42);
  border-bottom: 1px solid rgba(216, 7, 24, 0.42);
  background:
    radial-gradient(circle at 88% 50%, rgba(216, 7, 24, 0.2), transparent 30%),
    #0c0c0f;
}

.gw-cta-section::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 5, 5, 0.97), rgba(5, 5, 5, 0.76) 62%, rgba(5, 5, 5, 0.45));
  content: "";
  pointer-events: none;
}

.gw-cta-image {
  position: absolute !important;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.58;
}

.gw-cta-image > .elementor-widget-container,
.gw-cta-image img {
  width: 100%;
  height: 100%;
}

.gw-cta-image img {
  display: block;
  object-fit: cover;
  object-position: center;
}

.gw-cta-section > *:not(.gw-cta-image) {
  position: relative;
  z-index: 2;
}

.gw-cta-section .gw-section-title {
  max-width: 780px;
}

.gw-cta-section .gw-body-copy {
  max-width: 680px;
  margin-top: 18px;
}

.gw-contact-layout {
  display: grid !important;
  align-items: start;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(30px, 6vw, 76px);
}

.gw-contact-stack {
  display: grid !important;
  gap: 16px;
}

.gw-contact-visual {
  width: 100%;
  margin: 28px 0;
  overflow: hidden;
  border: 1px solid var(--gw-border);
  border-radius: var(--gw-radius);
}

.gw-contact-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.gw-contact-card {
  padding: 24px;
}

.gw-contact-card .elementor-heading-title {
  margin: 0 0 8px;
  color: var(--gw-red);
  font-size: 12px !important;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.gw-contact-card .elementor-widget-container,
.gw-contact-card a {
  color: var(--gw-white);
  font-size: 17px;
  font-weight: 670;
  overflow-wrap: anywhere;
}

.gw-form-shell {
  padding: clamp(26px, 4vw, 48px);
  border: 1px solid var(--gw-border);
  border-radius: var(--gw-radius);
  background: var(--gw-panel);
  box-shadow: var(--gw-shadow);
}

.gw-form-shell .gw-section-title {
  margin-bottom: 12px;
  font-size: clamp(30px, 3.4vw, 46px) !important;
}

.gw-inquiry-form {
  margin-top: 30px;
}

.gw-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.gw-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.gw-field-full {
  grid-column: 1 / -1;
}

.gw-field label,
.gw-consent label {
  color: var(--gw-silver-light);
  font-size: 14px;
  font-weight: 720;
}

.gw-field input,
.gw-field select,
.gw-field textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--gw-radius-small);
  background: #0d0d10;
  color: var(--gw-white);
  font: inherit;
  transition: border-color var(--gw-transition), box-shadow var(--gw-transition);
}

.gw-field input:hover,
.gw-field select:hover,
.gw-field textarea:hover {
  border-color: rgba(255, 255, 255, 0.34);
}

.gw-field input:focus,
.gw-field select:focus,
.gw-field textarea:focus {
  border-color: var(--gw-red);
  box-shadow: 0 0 0 4px rgba(216, 7, 24, 0.14);
}

.gw-field textarea {
  min-height: 140px;
  resize: vertical;
}

.gw-required {
  color: #ff5a66;
}

.gw-consent {
  display: flex;
  align-items: flex-start;
  grid-column: 1 / -1;
  gap: 11px;
  padding-top: 4px;
}

.gw-consent input {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--gw-red);
}

.gw-form-submit {
  grid-column: 1 / -1;
  min-height: 56px;
  padding: 14px 24px;
  border: 1px solid var(--gw-red);
  border-radius: 999px;
  background: var(--gw-red);
  color: var(--gw-white);
  font: inherit;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform var(--gw-transition), background var(--gw-transition), box-shadow var(--gw-transition);
}

.gw-form-submit:hover {
  transform: translateY(-2px);
  background: var(--gw-red-dark);
  box-shadow: 0 15px 32px rgba(216, 7, 24, 0.26);
}

.gw-form-notice {
  margin: 0 0 24px;
  padding: 16px 18px;
  border-radius: 10px;
  font-weight: 700;
}

.gw-form-notice-success {
  border: 1px solid #43b676;
  background: rgba(67, 182, 118, 0.12);
  color: #bdf3d1;
}

.gw-form-notice-error {
  border: 1px solid #ef6670;
  background: rgba(239, 102, 112, 0.12);
  color: #ffcbd0;
}

.gw-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}

.gw-policy-content {
  max-width: 850px;
}

.gw-policy-content h2 {
  margin: 52px 0 14px;
  color: var(--gw-white);
  font-size: clamp(25px, 3vw, 34px);
  line-height: 1.2;
}

.gw-policy-content h2:first-child {
  margin-top: 0;
}

.gw-policy-content p,
.gw-policy-content li {
  color: var(--gw-muted);
}

.gw-policy-note {
  margin-bottom: 38px;
  padding: 18px 20px;
  border-left: 3px solid var(--gw-red);
  background: rgba(216, 7, 24, 0.08);
  color: var(--gw-silver-light) !important;
}

.gw-site-footer {
  padding-inline: max(24px, calc((100vw - var(--gw-container)) / 2));
  border-top: 1px solid var(--gw-border);
  background: #030303;
}

.gw-footer-main {
  display: grid;
  grid-template-columns: 1.4fr 0.55fr 1fr;
  gap: clamp(40px, 7vw, 90px);
  padding: 74px 0 58px;
}

.gw-footer-brand img {
  display: block;
  width: min(100%, 330px);
  height: auto;
}

.gw-footer-brand p {
  max-width: 460px;
  margin: 24px 0 0;
  color: var(--gw-muted);
}

.gw-footer-column h2 {
  margin: 0 0 20px;
  color: var(--gw-white);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.gw-footer-menu {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.gw-footer-menu a,
.gw-footer-column address a,
.gw-footer-column address span {
  display: block;
  color: var(--gw-muted);
  font-style: normal;
  text-decoration: none;
  transition: color var(--gw-transition);
}

.gw-footer-menu a:hover,
.gw-footer-column address a:hover {
  color: var(--gw-white);
}

.gw-footer-column address {
  display: grid;
  gap: 10px;
}

.gw-footer-legal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0 32px;
  border-top: 1px solid var(--gw-border);
  color: #777a82;
  font-size: 13px;
}

.gw-footer-legal p {
  margin: 0;
}

.gw-footer-legal a {
  text-decoration: none;
}

@media (max-width: 1024px) {
  :root {
    --gw-header-height: 76px;
  }

  .gw-menu-toggle {
    display: flex;
  }

  .gw-primary-navigation {
    position: fixed;
    z-index: 999;
    top: var(--gw-header-height);
    right: 0;
    bottom: 0;
    width: min(430px, 100%);
    padding: 52px 32px;
    transform: translateX(100%);
    background: rgba(5, 5, 5, 0.985);
    box-shadow: -30px 0 60px rgba(0, 0, 0, 0.4);
    transition: transform 280ms ease;
    flex-direction: column;
    align-items: stretch;
  }

  .gw-primary-navigation.is-open {
    transform: translateX(0);
  }

  .gw-menu {
    align-items: stretch;
    flex-direction: column;
    gap: 0;
  }

  .gw-menu li {
    border-bottom: 1px solid var(--gw-border);
  }

  .gw-menu a {
    display: block;
    padding: 18px 2px;
    font-size: 17px;
  }

  .gw-menu a::after {
    display: none;
  }

  .gw-header-cta {
    margin: 32px 0 0;
  }

  .gw-grid-3,
  .gw-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gw-split,
  .gw-split-reverse,
  .gw-contact-layout {
    grid-template-columns: 1fr;
  }

  .gw-split-reverse .gw-visual-panel {
    order: 2;
  }

  .gw-visual-panel {
    min-height: 470px;
  }

  .gw-owner-visual {
    min-height: 620px;
  }

  .gw-cta-section {
    grid-template-columns: 1fr;
  }

  .gw-footer-main {
    grid-template-columns: 1.4fr 0.6fr;
  }

  .gw-footer-column:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 767px) {
  body {
    font-size: 16px;
  }

  .gw-header-shell {
    width: min(calc(100% - 28px), var(--gw-container));
  }

  .gw-brand img,
  .gw-brand .custom-logo {
    height: 44px;
    max-width: 200px;
  }

  .gw-menu-toggle-label {
    display: none;
  }

  .gw-section,
  .gw-page-hero,
  .gw-hero,
  .gw-trust-strip,
  .gw-cta-section,
  .gw-site-footer {
    padding-inline: 20px;
  }

  .gw-hero {
    align-items: flex-end;
    min-height: 760px;
    padding-top: 150px;
    padding-bottom: 72px;
  }

  .gw-video-overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.5) 52%, rgba(0, 0, 0, 0.82) 100%);
  }

  .gw-hero-actions,
  .gw-button-row {
    align-items: stretch;
    flex-direction: column !important;
    width: 100%;
  }

  .gw-hero-actions .elementor-widget-button,
  .gw-button-row .elementor-widget-button,
  .gw-btn,
  .gw-btn .elementor-button {
    width: 100%;
  }

  .gw-trust-strip {
    grid-template-columns: 1fr;
  }

  .gw-trust-item {
    min-height: 82px;
  }

  .gw-grid-2,
  .gw-grid-3,
  .gw-grid-4,
  .gw-stat-band {
    grid-template-columns: 1fr;
  }

  .gw-visual-panel {
    min-height: 390px;
  }

  .gw-owner-visual {
    min-height: 520px;
  }

  .gw-visual-label {
    right: 24px;
    bottom: 24px;
    left: 24px;
  }

  .gw-page-hero {
    min-height: 520px;
    padding-top: 160px;
    padding-bottom: 68px;
  }

  .gw-form-grid {
    grid-template-columns: 1fr;
  }

  .gw-field-full,
  .gw-consent,
  .gw-form-submit {
    grid-column: auto;
  }

  .gw-footer-main {
    grid-template-columns: 1fr;
    padding: 58px 0 44px;
  }

  .gw-footer-column:last-child {
    grid-column: auto;
  }

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

@media (max-width: 390px) {
  .gw-brand img,
  .gw-brand .custom-logo {
    max-width: 168px;
  }

  .gw-display-heading .elementor-heading-title,
  .gw-display-heading {
    font-size: 39px !important;
  }

  .gw-card,
  .gw-value-card,
  .gw-service-detail,
  .gw-form-shell {
    padding: 23px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .gw-hero-video {
    display: none !important;
  }
}
