/* Search Gurus core CSS - unminified split test, 2026-07-02.
   Site-wide foundation, header, buttons, footer, modal and sidebar form styles. */

:root {
  --color-primary: #2b5077;
  --color-secondary: #e0582a;
  --color-bg: #ffffff;
  --color-bg-alt: #f8f9fa;
  --color-gray: #e9ecef;
  --color-gray-trans: rgba(40, 40, 40, 0.14);
  --color-text: #2b5077;
  --color-text-muted: rgba(43, 80, 119, 0.82);
  --color-text-soft: rgba(43, 80, 119, 0.72);
  --color-white: #ffffff;
  --color-primary-rgb: 43, 80, 119;
  --color-secondary-rgb: 224, 88, 42;
  --color-white-rgb: 255, 255, 255;
  --color-bg-alt-rgb: 248, 249, 250;
  --color-gray-rgb: 233, 236, 239;

  --color-navy-drk: var(--color-primary);
  --color-navy-med: var(--color-primary);
  --color-background-alt: var(--color-bg-alt);
  --color-text-light: var(--color-text-muted);
  --color-gray-dark: var(--color-gray);

  --font-main: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 22px;
  --radius-pill: 999px;

  --shadow-soft: 0 5px 15px rgba(43, 80, 119, 0.075);
  --shadow-card: 0 5px 15px rgba(43, 80, 119, 0.09);
  --shadow-card-hover: 0 9px 25px rgba(43, 80, 119, 0.16);
  --shadow-button: 0 5px 15px rgba(224, 88, 42, 0.28);
  --shadow-button-hover: 0 9px 25px rgba(224, 88, 42, 0.36);
  --shadow-primary-button: 0 5px 15px rgba(43, 80, 119, 0.22);
  --shadow-primary-button-hover: 0 9px 25px rgba(43, 80, 119, 0.30);

  --card-bg: #ffffff;
  --card-border: rgba(43, 80, 119, 0.12);
  --card-radius: var(--radius-lg);
  --card-padding: 2.5rem;
  --card-shadow: var(--shadow-card);
  --card-shadow-hover: var(--shadow-card-hover);
  --card-title-size: 1.4rem;
  --card-copy-size: 0.95rem;
  --card-copy-color: var(--color-text-muted);
  --card-icon-bg: linear-gradient(135deg, rgba(43, 80, 119, 0.10), rgba(248, 249, 250, 0.96));

  --transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-main);
  color: var(--color-text);
  line-height: 1.6;
  font-size: 20px;
  background-color: var(--color-bg);
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #2b5077;
}

h1 {
  font-size: 3.5rem;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 2.8rem;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 1.8rem;
}

p {
  margin-bottom: 1.5rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

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

@media (min-width: 1400px) {
.container {
    width: min(calc(100% - 40px), 1360px);
  }
}

@media (min-width: 1600px) {
.container {
    width: min(calc(100% - 40px), 1560px);
  }
}

@media (min-width: 1700px) {
.container {
    width: min(calc(100% - 40px), 1660px);
  }
}

@media (min-width: 1800px) {
.container {
    width: min(calc(100% - 40px), 1760px);
  }
}

@media (min-width: 1900px) {
.container {
    width: min(calc(100% - 40px), 1860px);
  }
}

@media (max-width: 600px) {
.container {
    width: calc(100% - 30px);
  }
}

.site-header {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(43, 80, 119, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: var(--transition);
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  line-height: 0;
  transition: opacity 0.2s;
}

.logo:hover { opacity: 0.85; }

.logo img {
  height: 60px;
  width: auto;
  display: block;
  max-height: 60px;
}

.main-nav ul {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.main-nav a {
  font-weight: 600;
  color: #2b5077; /* var(--color-primary) */
  position: relative;
  padding-bottom: 5px;
}

.main-nav a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--color-secondary);
  transition: var(--transition);
}

.main-nav a.btn::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0px;
  bottom: 0;
  left: 0;
  background-color: transparent;
  transition: var(--transition);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: var(--color-primary);
  transition: var(--transition);
  border-radius: 3px;
}

.site-header {
  transition: box-shadow 0.2s ease, background-color 0.2s ease;
}

.site-header.is-compact {
  box-shadow: 0 4px 30px rgba(43, 80, 119, 0.10);
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: white;
  padding: 2.5rem;
  border-radius: 12px;
  width: 90%;
  max-width: 500px;
  position: relative;
  transform: translateY(20px);
  transition: var(--transition);
  box-shadow: 0 20px 40px rgba(43, 80, 119, 0.20);
}

.modal-overlay.active .modal-content {
  transform: translateY(0);
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: rgba(43, 80, 119, 0.45);
  transition: var(--transition);
  line-height: 1;
}

.close-modal:hover {
  color: var(--color-text);
}

.modal-content h3 {
  margin-bottom: 0.5rem;
  color: var(--color-primary);
}

.modal-content p {
  color: rgba(43, 80, 119, 0.62);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.form-group {
  margin-bottom: 1.5rem;
  text-align: left;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: rgba(43, 80, 119, 0.72);
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--color-gray);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(43, 80, 119, 0.10);
}

.mobile-floating-actions {
    display: none;
}

@media (max-width: 768px) {
body {
    font-size: 18px;
    padding-bottom: 70px; /* Space for mobile floating buttons */
  }

h1 {
    font-size: 2.8rem;
  }

h2 {
    font-size: 2.2rem;
  }

.main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    padding: 2rem;
    box-shadow: 0 10px 20px rgba(43, 80, 119, 0.10);
    display: none;
  }

.main-nav ul {
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 1.5rem;
  }

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

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

.mobile-floating-actions {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 -4px 20px rgba(43, 80, 119, 0.10);
    z-index: 1000;
    padding: 10px;
    gap: 10px;
  }

.floating-btn {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    color: white;
    gap: 8px;
    font-size: 1rem;
  }

.call-btn {
    background: linear-gradient(135deg, var(--color-primary) 0%, #2b5077 100%);
  }

.msg-btn {
    background: linear-gradient(135deg, var(--color-secondary) 0%, #e0582a 100%);
  }
}

.service-full-card .btn {
    width: 100%;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: rgba(43, 80, 119, 0.72);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--color-gray-dark);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background-color: #f8f9fa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    background-color: white;
    box-shadow: 0 0 0 3px rgba(43, 80, 119, 0.10);
}

.call-btn .btn-emoji {
    filter: brightness(0) invert(1);
    display: inline-block;
}

.about-main-section a:not(.btn) {
  color: var(--color-primary);
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(43, 80, 119, 0.28);
}

.about-main-section a:not(.btn):hover {
  color: var(--color-secondary);
  text-decoration-color: rgba(224, 88, 42, 0.55);
}

.about-callout a:not(.btn) {
  color: var(--color-primary);
  font-weight: 850;
  text-decoration: none;
}

.about-callout a:not(.btn):hover {
  color: var(--color-secondary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 768px) {
.about-callout .btn {
    width: min(100%, 320px);
    margin: 0 auto;
  }
}


/* ===== Sidebar layout restoration: 2026-07-03 ===== */

/*
  Restores the shared two-column shell that the homepage sidebar depends on.
  During the first CSS split, homepage-specific column widths were preserved,
  but the base grid declaration was accidentally left behind in the full CSS.
*/
.page-with-sidebar {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 1.5rem;
  align-items: start;
}

.page-with-sidebar > .page-main-content {
  min-width: 0;
  margin-top: 3.5rem;
}

@media (max-width: 1180px) {
  .page-with-sidebar,
  .page-home .page-with-sidebar {
    grid-template-columns: 1fr;
  }
}

.contact-sidebar {
    position: sticky;
    top: 90px;
    max-height: calc(100vh - 110px);
	padding: 0 1.0em;
    overflow-y: auto;
}

.contact-sidebar-inner {
    background: white;
    border-radius: 16px;
    border: 1px solid #e9ecef;
    box-shadow: 0 5px 15px rgba(43, 80, 119, 0.15);
    overflow: hidden;
	margin-top:3.5rem;
	margin-bottom:3.5rem;
}

@media (max-width: 1024px) {
.contact-sidebar-inner {
		margin-top:0rem;
		margin-bottom:3.0rem;
	}
}

.cs-geo-badge {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    color: #e0582a;
    padding: 0.75rem 1.25rem;
    font-size: 0.82rem;
    line-height: 1.4;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cs-geo-pin {
    font-size: 1.1rem;
    flex-shrink: 0;
}

.cs-form {
    padding: 0 1.75rem 1.5rem;
}

.cs-field {
    margin-bottom: 1rem;
}

.cs-field label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: #2b5077;
    margin-bottom: 4px;
    letter-spacing: 0.02em;
}

.cs-req {
    color: #e0582a;
}

.cs-field input,
.cs-field textarea {
    width: 100%;
    padding: 10px 14px;
    font-size: 0.92rem;
    font-family: inherit;
    color: #2b5077;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
    box-sizing: border-box;
}

.cs-field input::placeholder,
.cs-field textarea::placeholder {
    color: rgba(43, 80, 119, 0.45);
}

.cs-field input:focus,
.cs-field textarea:focus {
    outline: none;
    border-color: #2b5077;
    background: white;
    box-shadow: 0 0 0 3px rgba(0,58,122,0.1);
}

.cs-field textarea {
    resize: vertical;
    min-height: 70px;
}

.cs-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 20px;
    font-size: 1rem;
    font-weight: 700;
    color: white;
    background: linear-gradient(135deg, #e0582a 0%, #e0582a 100%);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s;
    box-shadow: 0 5px 15px rgba(224, 88, 42, 0.30);
}

.cs-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 9px 25px rgba(224, 88, 42, 0.40);
}

.cs-arrow {
    transition: transform 0.2s;
}

.cs-submit:hover .cs-arrow {
    transform: translateX(4px);
}

.cs-footer {
    padding: 1rem 1.75rem 1.25rem;
    border-top: 1px solid #e9ecef;
    text-align: center;
}

.cs-footer p {
    color: rgba(43, 80, 119, 0.45);
    font-size: 0.78rem;
    margin: 0 0 0.5rem;
}

.cs-phone {
    font-size: 0.9rem;
    font-weight: 600;
    color: #2b5077;
}

.cs-phone a {
    color: inherit;
    text-decoration: none;
}

.cs-phone a:hover {
    text-decoration: underline;
}

.cs-success {
    padding: 3rem 2rem;
    text-align: center;
}

.cs-success-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cs-success h3 {
    color: #2b5077;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.cs-success p {
    color: rgba(43, 80, 119, 0.62);
    font-size: 0.95rem;
}

@media (max-width: 1024px) {
.contact-sidebar {
        position: relative;
        top: 0;
        max-height: none;
    }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.schema-hidden,
[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--color-text);
  background: var(--color-bg);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--color-primary);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.15;
  text-decoration: none !important;
  gap: 8px;
  min-height: 48px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  box-shadow: none;
}

.btn-primary,
.contact-submit-btn,
.cs-submit {
  background: linear-gradient(135deg, var(--color-secondary), rgba(224, 88, 42, 0.86));
  border: 2px solid rgba(224, 88, 42, 0.45);
  color: var(--color-white);
  box-shadow: var(--shadow-button);
}

.btn-primary:hover,
.contact-submit-btn:hover,
.cs-submit:hover {
  background: linear-gradient(135deg, rgba(224, 88, 42, 0.86), var(--color-secondary));
  border: 2px solid rgba(224, 88, 42, 0.45);
  color: var(--color-white);
  box-shadow: var(--shadow-button-hover);
  transform: translateY(-2px);
}

.btn-secondary {
  background:  var(--color-white);
  border: 2px solid var(--color-white);
  color: var(--color-primary);
  box-shadow: var(--shadow-button);
}

.btn-secondary:hover {
  background: var(--color-primary);
  border: 2px solid var(--color-white);
  color: var(--color-white);
  box-shadow: var(--shadow-button-hover);
  transform: translateY(-2px);
}

.btn-large {
  padding: 18px 36px;
  font-size: 1.2rem;
}

.btn-outline {
  color: var(--color-primary) !important;
  background: transparent;
  border-color: rgba(43, 80, 119, 0.28);
}

.btn-outline:hover {
  color: #ffffff !important;
  background: var(--color-primary);
  border-color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-primary-button-hover);
}

.btn-nav {
  min-height: 42px;
  padding: 10px 20px;
  font-size: 0.95rem;
}

.btn-block {
  width: 100%;
}

.nav-muted-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 15px;
  color: var(--color-text-soft) !important;
}

.site-header {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 5px 15px rgba(43, 80, 119, 0.07);
}

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

.main-nav a {
  color: var(--color-primary);
}

.main-nav a.btn::after,
.main-nav .nav-muted-link::after {
  display: none;
}

.contact-sidebar {
  scrollbar-width: thin;
  scrollbar-color: rgba(43, 80, 119, 0.28) transparent;
}

.contact-sidebar-inner {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--card-border);
  overflow: hidden;
}

.contact-sidebar-intro {
  padding: 1.35rem 1.75rem 0;
  text-align: center;
}

.cs-intro-title {
  color: var(--color-primary);
  font-size: 1.12rem;
  line-height: 1.25;
  font-weight: 850;
  margin: 0 0 0.3rem;
}

.cs-intro-text {
  color: var(--color-text-muted);
  font-size: 0.86rem;
  line-height: 1.5;
  margin: 0 0 1.05rem;
}

.cs-geo-badge {
  background: linear-gradient(135deg, rgba(224, 88, 42, 0.08), rgba(233, 236, 239, 0.55));
  color: var(--color-primary);
  border-bottom: 1px solid var(--card-border);
}

.cs-field label,
.form-group label {
  color: var(--color-primary);
}

.cs-field input,
.cs-field textarea,
.form-group input,
.form-group select,
.form-group textarea,
.contact-form-enhanced input,
.contact-form-enhanced textarea {
  color: var(--color-primary);
  background: var(--color-bg-alt);
  border: 1px solid var(--color-gray);
}

.cs-field input:focus,
.cs-field textarea:focus,
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus,
.contact-form-enhanced input:focus,
.contact-form-enhanced textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(43, 80, 119, 0.10);
}

.cs-success {
  display: none;
  padding: 3rem 2rem;
  text-align: center;
}

.cs-phone,
.cs-phone a {
  color: var(--color-primary);
}

.floating-msg-btn {
  border: 0;
  cursor: pointer;
  font-family: inherit;
}

.call-btn {
  background: linear-gradient(135deg, var(--color-primary), rgba(43, 80, 119, 0.86));
}

.msg-btn {
  background: linear-gradient(135deg, var(--color-secondary), rgba(224, 88, 42, 0.86));
}

.mobile-floating-actions {
  box-shadow: 0 -5px 15px rgba(43, 80, 119, 0.10);
}

.modal-overlay {
  background: rgba(43, 80, 119, 0.62);
}

.modal-content {
  box-shadow: var(--shadow-card-hover);
}

@media (max-width: 1180px) {
.contact-sidebar {
    position: relative;
    top: 0;
    max-height: none;
    padding: 0;
  }
}

@media (max-width: 999px) {
.site-header .container {
    position: relative;
  }

.main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    display: none;
    padding: 1.4rem;
    background: #ffffff;
    border-top: 1px solid var(--color-gray);
    box-shadow: var(--shadow-card);
  }

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

.main-nav ul {
    flex-direction: column;
    gap: 1rem;
  }

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

@media (max-width: 768px) {
body {
    font-size: 18px;
  }

.btn-large {
    min-height: 54px;
    padding: 14px 22px;
    font-size: 1rem;
  }
}

.btn-primary,
.btn-primary:visited,
.contact-submit-btn,
.cs-submit,
.audit-form-row button,
.submit-btn,
.floating-btn,
.call-btn,
.msg-btn {
  color: #ffffff !important;
}

.btn-primary:hover,
.btn-primary:focus-visible,
.contact-submit-btn:hover,
.contact-submit-btn:focus-visible,
.cs-submit:hover,
.cs-submit:focus-visible,
.audit-form-row button:hover,
.audit-form-row button:focus-visible,
.submit-btn:hover,
.submit-btn:focus-visible,
.floating-btn:hover,
.floating-btn:focus-visible,
.call-btn:hover,
.call-btn:focus-visible,
.msg-btn:hover,
.msg-btn:focus-visible {
  color: #ffffff !important;
}

.btn-secondary:hover,
.btn-secondary:focus-visible,
.btn-outline:hover,
.btn-outline:focus-visible,
.btn-nav:hover,
.btn-nav:focus-visible {
  color: #ffffff !important;
}

.main-nav .header-nav-quote-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  height: 40px;
  padding: 0 1.05rem;
  border: 2px solid rgba(224, 88, 42, 0.34);
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--color-secondary), rgba(224, 88, 42, 0.88));
  color: #ffffff !important;
  box-shadow: 0 5px 15px rgba(224, 88, 42, 0.20);
  font-size: 1.0rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-decoration: none !important;
  padding-bottom: 0;
  white-space: nowrap;
  transform: translateY(0);
}

.main-nav .header-nav-quote-btn::after {
  display: none !important;
}

.main-nav .header-nav-quote-btn:hover,
.main-nav .header-nav-quote-btn:focus-visible,
.main-nav .header-nav-quote-btn.active {
  color: #ffffff !important;
  background: linear-gradient(135deg, rgba(224, 88, 42, 0.90), var(--color-secondary));
  border-color: rgba(224, 88, 42, 0.58);
  box-shadow: 0 9px 25px rgba(224, 88, 42, 0.28);
  transform: translateY(-2px);
  outline: none;
}

.main-nav .header-nav-quote-btn:focus-visible {
  box-shadow:
    0 9px 25px rgba(224, 88, 42, 0.28),
    0 0 0 4px rgba(224, 88, 42, 0.16);
}

@media (max-width: 999px) {
.main-nav .header-nav-quote-btn {
    width: min(100%, 260px);
    min-height: 44px;
    height: 44px;
    font-size: 1rem;
  }
}

.page-terms .glossary-term a:not(.btn) {
  color: var(--color-primary);
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(43, 80, 119, 0.28);
}

.page-terms .glossary-term a:not(.btn):hover,
.page-terms .glossary-term a:not(.btn):focus-visible {
  color: var(--color-secondary);
  text-decoration-color: rgba(224, 88, 42, 0.58);
}

.page-privacy .glossary-term a:not(.btn) {
  color: var(--color-primary);
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(43, 80, 119, 0.28);
}

.page-privacy .glossary-term a:not(.btn):hover,
.page-privacy .glossary-term a:not(.btn):focus-visible {
  color: var(--color-secondary);
  text-decoration-color: rgba(224, 88, 42, 0.58);
}

@media (max-width: 768px) {
.page-sitemap .sitemap-hero-actions .btn,
  .page-sitemap .sitemap-bottom-cta .btn {
    width: min(100%, 340px);
  }
}

@media (max-width: 768px) {
.page-seo-audit .seo-audit-hero-actions .btn,
  .page-seo-audit .seo-audit-pricing-actions .btn {
    width: min(100%, 340px);
  }
}

@media (max-width: 520px) {
.page-seo-audit .seo-audit-hero-actions .btn,
  .page-seo-audit .seo-audit-pricing-actions .btn {
    width: 100%;
  }
}

.page-service-redesign .service-detail-copy a:not(.btn) {
  color: var(--color-primary);
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(43, 80, 119, 0.28);
}

.page-service-redesign .service-detail-copy a:not(.btn):hover,
.page-service-redesign .service-detail-copy a:not(.btn):focus-visible {
  color: var(--color-secondary);
  text-decoration-color: rgba(224, 88, 42, 0.58);
}

@media (max-width: 768px) {
.page-service-redesign .service-detail-hero-actions .btn,
  .page-service-redesign .service-detail-final-actions .btn {
    width: min(100%, 360px);
  }
}

.page-about-redesign .about-redesign-feature-card a:not(.btn) {
  color: var(--color-primary);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(43, 80, 119, 0.28);
}

.page-about-redesign .about-redesign-feature-card a:not(.btn):hover,
.page-about-redesign .about-redesign-feature-card a:not(.btn):focus-visible {
  color: var(--color-secondary);
  text-decoration-color: rgba(224, 88, 42, 0.58);
}

@media (max-width: 768px) {
.page-about-redesign .about-redesign-hero-actions .btn,
  .page-about-redesign .about-redesign-callout-actions .btn {
    width: min(100%, 360px);
  }
}

@media (max-width: 520px) {
.page-about-redesign .about-redesign-hero-actions .btn,
  .page-about-redesign .about-redesign-callout-actions .btn {
    width: 100%;
  }
}

.page-portfolio .portfolio-page-header .container {
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
.portfolio-hero-actions .btn,
  .portfolio-cta-actions .btn {
    width: min(100%, 360px);
  }
}

.contact-sidebar .contact-sidebar-panel {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background:
    radial-gradient(circle at 92% 4%, rgba(224, 88, 42, 0.22), transparent 29%),
    linear-gradient(145deg, #183858 0%, var(--color-primary) 58%, #23486d 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 5px 15px rgba(31, 57, 82, 0.24);
}

.contact-sidebar .contact-sidebar-panel::before {
  content: "";
  position: absolute;
  top: -90px;
  right: -85px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.055);
  pointer-events: none;
}

.contact-sidebar .contact-sidebar-intro {
  position: relative;
  z-index: 1;
  padding: 1.15rem 1.5rem 0.7rem;
  text-align: left;
}

.contact-sidebar .cs-intro-title {
  color: #ffffff;
  font-size: 1.2rem;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: -0.015em;
  margin: 0 0 0.28rem;
}

.contact-sidebar .cs-intro-text {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  line-height: 1.45;
  margin: 0;
}

.contact-sidebar .cs-geo-badge {
  position: relative;
  z-index: 1;
  padding: 0.62rem 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.09);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 0.76rem;
  line-height: 1.35;
}

.contact-sidebar .cs-geo-badge strong {
  color: #ffffff;
}

.contact-sidebar .cs-geo-pin {
  font-size: 1rem;
}

.contact-sidebar .contact-sidebar-form {
  position: relative;
  z-index: 1;
  padding: 0.55rem 1.5rem 1.1rem;
}

.contact-sidebar .contact-sidebar-form .cs-field {
  margin-bottom: 0.72rem;
}

.contact-sidebar .contact-sidebar-form .cs-field label {
  margin-bottom: 0.24rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.74rem;
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: 0.025em;
}

.contact-sidebar .contact-sidebar-form .cs-req {
  color: #f5a080;
}

.contact-sidebar .contact-sidebar-form .cs-field input,
.contact-sidebar .contact-sidebar-form .cs-field textarea {
  width: 100%;
  padding: 0.62rem 0.78rem;
  color: var(--color-primary);
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 8px;
  box-shadow: inset 0 1px 2px rgba(31, 57, 82, 0.06);
  font-size: 0.84rem;
  line-height: 1.35;
}

.contact-sidebar .contact-sidebar-form .cs-field input::placeholder,
.contact-sidebar .contact-sidebar-form .cs-field textarea::placeholder {
  color: rgba(43, 80, 119, 0.48);
}

.contact-sidebar .contact-sidebar-form .cs-field input:focus,
.contact-sidebar .contact-sidebar-form .cs-field textarea:focus {
  outline: none;
  color: var(--color-primary);
  background: #ffffff;
  border-color: rgba(245, 160, 128, 0.95);
  box-shadow:
    0 0 0 3px rgba(224, 88, 42, 0.2),
    inset 0 1px 2px rgba(31, 57, 82, 0.04);
}

.contact-sidebar .contact-sidebar-form .cs-field textarea {
  min-height: 76px;
  resize: vertical;
}

.contact-sidebar .contact-sidebar-form .cs-submit {
  min-height: 46px;
  margin-top: 0.15rem;
  padding: 0.72rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 9px;
  background: linear-gradient(135deg, var(--color-secondary), #ca4820);
  box-shadow: 0 8px 20px rgba(14, 30, 48, 0.24);
  font-size: 0.92rem;
  font-weight: 850;
}

.contact-sidebar .contact-sidebar-form .cs-submit:hover,
.contact-sidebar .contact-sidebar-form .cs-submit:focus-visible {
  background: linear-gradient(135deg, #ec673a, var(--color-secondary));
  box-shadow: 0 11px 26px rgba(14, 30, 48, 0.32);
  transform: translateY(-2px);
}

.contact-sidebar .cs-footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.8rem 1.5rem 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(11, 34, 56, 0.16);
  text-align: left;
}

.contact-sidebar .cs-footer p {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.68rem;
  line-height: 1.35;
  margin: 0;
}

.contact-sidebar .cs-phone,
.contact-sidebar .cs-phone a {
  color: #ffffff;
  font-size: 0.8rem;
  line-height: 1.3;
  font-weight: 800;
  white-space: nowrap;
}

.contact-sidebar .cs-phone a:hover,
.contact-sidebar .cs-phone a:focus-visible {
  color: #f7b49c;
  text-decoration: none;
}

.contact-sidebar .cs-success {
  position: relative;
  z-index: 1;
  padding: 2rem 1.5rem;
  color: #ffffff;
  background: transparent;
}

.contact-sidebar .cs-success h3 {
  color: #ffffff;
}

.contact-sidebar .cs-success p {
  color: rgba(255, 255, 255, 0.76);
}

@media (max-width: 1180px) {
.contact-sidebar .contact-sidebar-panel {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 560px) {
.contact-sidebar .contact-sidebar-intro,
  .contact-sidebar .contact-sidebar-form,
  .contact-sidebar .cs-footer {
    padding-left: 1.15rem;
    padding-right: 1.15rem;
  }

.contact-sidebar .cs-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.45rem;
  }
}

.g-recaptcha {
  max-width: 100% !important;
  overflow: hidden;
}

.g-recaptcha > div {
  max-width: 100% !important;
}

.cs-field .g-recaptcha > div,
.modal-content .g-recaptcha > div {
  transform-origin: top left;
}

@media (max-width: 400px) {
.g-recaptcha > div {
    transform: scale(0.85);
    transform-origin: top left;
    margin-bottom: -12px;
  }
}

.contact-sidebar .g-recaptcha {
  border-radius: 6px;
  overflow: hidden;
}

.g-recaptcha,
.g-recaptcha > div,
.g-recaptcha > div > div {
  max-width: 100% !important;
  overflow: hidden;
}

.contact-sidebar .g-recaptcha,
.modal-content .g-recaptcha {
  display: flex;
  justify-content: center;
}

@media (max-width: 420px) {
.g-recaptcha > div {
    transform: scale(0.78);
    transform-origin: top left;
    margin-bottom: -16px;
  }
}

@media (max-width: 560px) {
body.modal-open {
    overflow: hidden;
  }

.modal-overlay {
    align-items: flex-start;
    padding-top: 1rem;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

.modal-content {
    width: 94%;
    max-width: none;
    padding: 1.5rem 1.25rem;
    margin-bottom: 1rem;
    border-radius: 10px;
  }

.modal-content h3 {
    font-size: 1.2rem;
  }

.modal-content p {
    font-size: 0.85rem;
    margin-bottom: 1.25rem;
  }

.modal-content .form-group {
    margin-bottom: 0.65rem;
  }

.modal-content input,
  .modal-content textarea {
    padding: 0.6rem 0.7rem;
    font-size: 0.88rem;
  }

.modal-content textarea {
    min-height: 60px;
  }

.modal-content .btn-block {
    padding: 0.72rem;
    font-size: 0.9rem;
  }

.close-modal {
    top: 10px;
    right: 10px;
    font-size: 1.4rem;
  }
}

.page-blog .blog-page-header .container {
  position: relative;
  z-index: 1;
}

.blog-question-section .btn {
  white-space: nowrap;
}

@media (max-width: 1180px) {
.blog-question-section .btn {
    width: fit-content;
  }
}

@media (max-width: 768px) {
.blog-hero-actions .btn,
  .blog-question-section .btn {
    width: min(100%, 360px);
  }
}

@media (max-width: 768px) {
.page-404 .error404-hero-actions .btn,
  .page-404 .error404-cta .btn {
    width: min(100%, 340px);
  }
}

@media (max-width: 520px) {
.page-404 .error404-hero-actions .btn,
  .page-404 .error404-cta .btn {
    width: 100%;
  }
}

.site-footer-redesign {
  --footer-bg: #2b5077;
  --footer-bg-deep: #234463;
  --footer-accent: #e0582a;
  --footer-text: rgba(255, 255, 255, 0.76);
  --footer-text-soft: rgba(255, 255, 255, 0.58);
  --footer-line: rgba(255, 255, 255, 0.14);

  position: relative;
  overflow: hidden;
  padding: clamp(3.75rem, 7vw, 5.25rem) 0 1.75rem;
  color: var(--footer-text);
  background:
    radial-gradient(circle at 8% 0%, rgba(255, 255, 255, 0.075), transparent 31rem),
    radial-gradient(circle at 92% 16%, rgba(224, 88, 42, 0.11), transparent 25rem),
    linear-gradient(135deg, var(--footer-bg-deep), var(--footer-bg));
  border-top: 4px solid var(--footer-accent);
}

.site-footer-redesign::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.5;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, #000, transparent 78%);
}

.site-footer-redesign .container {
  position: relative;
  z-index: 1;
}

.footer-main-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) minmax(170px, 0.78fr) minmax(190px, 0.9fr) minmax(270px, 1.2fr);
  gap: clamp(2rem, 4vw, 4.5rem);
  align-items: start;
}

.footer-brand-panel,
.footer-nav-column,
.footer-contact-panel {
  min-width: 0;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  margin-bottom: 1.35rem;
}

.footer-brand img {
  display: block;
  width: auto;
  height: clamp(58px, 5vw, 76px);
  max-width: 100%;
  opacity: 0.96;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.footer-brand:hover img {
  opacity: 1;
  transform: translateY(-1px);
}

.footer-positioning {
  max-width: 470px;
  margin: 0 0 1.35rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(0.98rem, 1vw, 1.05rem);
  line-height: 1.72;
}

.footer-brand-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.45rem;
}

.footer-brand-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0.32rem 0.72rem;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-size: 0.73rem;
  line-height: 1;
  font-weight: 750;
  letter-spacing: 0.035em;
}

.footer-brand-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: #ffffff !important;
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
}

.footer-brand-cta span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: #ffffff;
  background: var(--footer-accent);
  transition: transform 0.2s ease, background 0.2s ease;
}

.footer-brand-cta:hover {
  padding-left: 0 !important;
}

.footer-brand-cta:hover span {
  transform: translateX(4px);
  background: #ee6a3c;
}

.site-footer-redesign .footer-heading {
  position: relative;
  margin: 0 0 1.35rem;
  padding-bottom: 0.85rem;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.3;
  font-weight: 800;
  letter-spacing: 0.015em;
}

.site-footer-redesign .footer-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 34px;
  height: 3px;
  border-radius: 999px;
  background: var(--footer-accent);
}

.footer-link-list,
.footer-contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-link-list {
  display: grid;
  gap: 0.82rem;
}

.site-footer-redesign .footer-link-list li {
  margin: 0;
}

.footer-link-list a {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: var(--footer-text);
  font-size: 0.91rem;
  line-height: 1.42;
  text-decoration: none;
}

.footer-link-list a::before {
  content: "";
  flex: 0 0 auto;
  width: 0;
  height: 1px;
  margin-right: 0;
  background: var(--footer-accent);
  transition: width 0.2s ease, margin-right 0.2s ease;
}

.footer-link-list a:hover,
.footer-link-list a:focus-visible {
  color: #ffffff;
  padding-left: 0 !important;
  outline: none;
}

.footer-link-list a:hover::before,
.footer-link-list a:focus-visible::before {
  width: 14px;
  margin-right: 0.45rem;
}

.footer-contact-list {
  display: grid;
  gap: 1rem;
}

.site-footer-redesign .footer-contact-list li {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 0.82rem;
  align-items: start;
  margin: 0;
  color: var(--footer-text);
  font-size: 0.91rem;
  line-height: 1.5;
}

.footer-contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 11px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.footer-contact-icon svg {
  display: block;
  width: 18px;
  height: 18px;
}

.footer-contact-list strong {
  display: block;
  margin-bottom: 0.18rem;
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.68rem;
  line-height: 1.2;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.footer-contact-list a {
  color: var(--footer-text);
  text-decoration: none;
}

.footer-contact-list a:hover,
.footer-contact-list a:focus-visible {
  color: #ffffff;
  padding-left: 0 !important;
  text-decoration: underline;
  text-underline-offset: 3px;
  outline: none;
}

.footer-service-area {
  margin: 1.3rem 0 0 3.2rem;
  color: var(--footer-text-soft);
  font-size: 0.78rem;
  line-height: 1.55;
}

.footer-payment-row {
  display: grid;
  gap: 0.75rem;
  justify-items: start;
  margin-top: 2.0rem;
  padding-top: 1.5rem;
}

.footer-payment-label {
  color: var(--footer-text-soft);
  font-size: 0.67rem;
  line-height: 1.3;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-payment-icons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.payment-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 34px;
  padding: 0.3rem 0.42rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.065);
  line-height: 0;
}

.payment-icon img {
  display: block;
  width: auto;
  height: 20px;
  max-width: 100%;
  object-fit: contain;
  opacity: 0.88;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.payment-icon:hover img {
  opacity: 1;
  transform: translateY(-1px);
}

.footer-lower {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 1.45rem;
  padding: 1.35rem 0;
  border-top: 1px solid var(--footer-line);
  border-bottom: 1px solid var(--footer-line);
}

.footer-utility-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.55rem 1.25rem;
}

.footer-utility-nav a {
  color: var(--footer-text-soft);
  font-size: 0.78rem;
  line-height: 1.3;
  font-weight: 700;
  text-decoration: none;
}

.footer-utility-nav a:hover,
.footer-utility-nav a:focus-visible {
  color: #ffffff;
  padding-left: 0 !important;
  outline: none;
}

.footer-bottom-social {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.footer-bottom-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.12);
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.footer-bottom-icon svg {
  display: block;
  width: 18px;
  height: 18px;
}

.footer-bottom-icon:hover,
.footer-bottom-icon:focus-visible {
  color: #ffffff;
  background: var(--footer-accent);
  border-color: var(--footer-accent);
  transform: translateY(-2px);
  padding-left: 0 !important;
  outline: none;
}

.footer-copyright {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.7rem 1.5rem;
  padding-top: 1.25rem;
}

.footer-copyright p {
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.74rem;
  line-height: 1.45;
}

@media (max-width: 1180px) {
.footer-main-grid {
    grid-template-columns: minmax(280px, 1.35fr) repeat(2, minmax(180px, 0.8fr));
  }

.footer-contact-panel {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(180px, 0.42fr) minmax(0, 1fr);
    gap: 0 2.5rem;
  }

.footer-contact-panel .footer-heading {
    grid-column: 1;
  }

.footer-contact-panel .footer-contact-list {
    grid-column: 2;
    grid-row: 1 / span 2;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

.footer-service-area {
    grid-column: 1;
    margin: 0;
  }
}

@media (max-width: 860px) {
.footer-main-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

.footer-brand-panel {
    grid-column: 1 / -1;
    padding-bottom: 0.5rem;
  }

.footer-positioning {
    max-width: 680px;
  }

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

.footer-contact-panel .footer-heading,
  .footer-contact-panel .footer-contact-list,
  .footer-service-area {
    grid-column: 1;
    grid-row: auto;
  }

.footer-contact-panel .footer-contact-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

.footer-service-area {
    margin: 1.25rem 0 0;
  }
}

@media (max-width: 640px) {
.site-footer-redesign {
    padding: 4rem 0 6.5rem;
  }

.footer-main-grid {
    grid-template-columns: 1fr;
    gap: 2.35rem;
  }

.footer-brand-panel,
  .footer-nav-column,
  .footer-contact-panel {
    grid-column: 1;
  }

.footer-brand img {
    height: 62px;
  }

.footer-payment-row {
    margin-top: 1.85rem;
    padding-top: 1.4rem;
  }

.footer-contact-panel .footer-contact-list {
    grid-template-columns: 1fr;
  }

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

.footer-utility-nav {
    gap: 0.7rem 1.15rem;
  }

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

@media (max-width: 390px) {
.footer-brand-meta {
    gap: 0.4rem;
  }

.footer-brand-meta span {
    padding-inline: 0.58rem;
    font-size: 0.68rem;
  }

.payment-icon {
    width: 52px;
    height: 32px;
  }

.payment-icon img {
    height: 18px;
  }
}

.page-locations .locations-cta-actions .btn {
  white-space: nowrap;
}

@media (max-width: 768px) {
.page-locations .locations-cta-actions .btn {
    width: min(100%, 360px);
  }
}

@media (max-width: 520px) {
.page-locations .locations-cta-actions .btn {
    width: 100%;
  }
}

.cs-recaptcha-frame .g-recaptcha {
  width: 100%;
  min-width: 0;
  line-height: 0;
}

.cs-recaptcha-frame .g-recaptcha > div {
  max-width: 100%;
}

.site-footer {
  --footer-text-soft: rgba(255, 255, 255, 0.82);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 3px solid #e0582a;
  outline-offset: 3px;
}

.modal-overlay[aria-hidden="true"] {
  pointer-events: none;
}

.modal-overlay[aria-hidden="false"] {
  pointer-events: auto;
}

.cs-field input::placeholder,
.cs-field textarea::placeholder,
.form-group input::placeholder,
.form-group textarea::placeholder,
.contact-form-enhanced input::placeholder,
.contact-form-enhanced textarea::placeholder {
  color: rgba(43, 80, 119, 0.68);
  opacity: 1;
}

.btn-primary,
.contact-submit-btn,
.cs-submit,
.submit-btn,
.msg-btn,
.main-nav .header-nav-quote-btn {
  background: linear-gradient(135deg, #c7471f, #b83d19);
  border-color: rgba(184, 61, 25, 0.72);
}

.btn-primary:hover,
.btn-primary:focus-visible,
.contact-submit-btn:hover,
.contact-submit-btn:focus-visible,
.cs-submit:hover,
.cs-submit:focus-visible,
.submit-btn:hover,
.submit-btn:focus-visible,
.msg-btn:hover,
.msg-btn:focus-visible,
.main-nav .header-nav-quote-btn:hover,
.main-nav .header-nav-quote-btn:focus-visible,
.main-nav .header-nav-quote-btn.active {
  background: linear-gradient(135deg, #b83d19, #a93616);
  border-color: #a93616;
}
