/*
Theme Name: TwoPointZero Command
Theme URI: https://2pt0c.com/
Author: TwoPointZero Consulting Group
Author URI: https://2pt0c.com/
Description: Mission-first credibility theme prioritizing Fractional CTO and Cybersecurity services.
Version: 0.2.16
Requires at least: 6.4
Tested up to: 6.8
Requires PHP: 8.0
Text Domain: twopointzero-command
*/

@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Source+Sans+3:wght@400;500;600;700&display=swap");

:root {
  --tpz-bg-900: #0a0f1b;
  --tpz-bg-800: #101b31;
  --tpz-bg-700: #172746;
  --tpz-panel: rgba(16, 27, 49, 0.88);
  --tpz-line: rgba(168, 186, 219, 0.24);
  --tpz-text-50: #f2f6ff;
  --tpz-text-200: #d6e1f5;
  --tpz-text-400: #9fb0cd;
  --tpz-navy: #1f3275;
  --tpz-orange: #f58220;
  --tpz-orange-strong: #ff962e;
  --tpz-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  --tpz-radius: 16px;
  --tpz-max: 1140px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--tpz-text-200);
  background: linear-gradient(180deg, var(--tpz-bg-900), #081223 40%, #0b1a2f 100%);
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  line-height: 1.6;
}

body::before,
body::after {
  content: "";
  position: fixed;
  z-index: -2;
  border-radius: 999px;
  opacity: 0.45;
  filter: blur(0);
}

body::before {
  top: -180px;
  right: -120px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle at 35% 35%, rgba(245, 130, 32, 0.42), rgba(245, 130, 32, 0));
}

body::after {
  bottom: -260px;
  left: -220px;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle at 60% 40%, rgba(31, 50, 117, 0.64), rgba(31, 50, 117, 0));
}

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

.tpz-shell {
  width: min(100% - 2.6rem, var(--tpz-max));
  margin-inline: auto;
}

.tpz-site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(9, 15, 30, 0.78);
  border-bottom: 1px solid var(--tpz-line);
}

.tpz-site-header .tpz-shell {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 78px;
  position: relative;
}

.tpz-nav {
  margin-left: auto;
}

.tpz-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.tpz-brand-shield {
  width: 40px;
  height: 48px;
  flex: 0 0 auto;
}

.tpz-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.tpz-brand-text strong {
  font-family: "Space Grotesk", "Avenir Next", sans-serif;
  color: var(--tpz-text-50);
  letter-spacing: 0.01em;
  font-size: 1.1rem;
  font-weight: 700;
}

.tpz-brand-text small {
  color: var(--tpz-text-400);
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}

.tpz-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.1rem;
  margin: 0;
  padding: 0;
}

.tpz-menu a {
  color: var(--tpz-text-200);
  font-weight: 600;
  font-size: 0.96rem;
  letter-spacing: 0.01em;
}

.tpz-menu a:hover,
.tpz-menu .current-menu-item a {
  color: #fff;
}

.tpz-menu-toggle {
  display: none;
  align-items: center;
  gap: 0.5rem;
  min-height: 40px;
  padding: 0.35rem 0.62rem;
  border: 1px solid var(--tpz-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--tpz-text-200);
  font-family: "Space Grotesk", "Avenir Next", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
}

.tpz-menu-toggle:hover {
  border-color: rgba(245, 130, 32, 0.45);
}

.tpz-menu-toggle-icon {
  position: relative;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.tpz-menu-toggle-icon::before,
.tpz-menu-toggle-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.18s ease, top 0.18s ease, opacity 0.18s ease;
}

.tpz-menu-toggle-icon::before {
  top: -5px;
}

.tpz-menu-toggle-icon::after {
  top: 5px;
}

.tpz-menu-toggle[aria-expanded="true"] .tpz-menu-toggle-icon {
  background: transparent;
}

.tpz-menu-toggle[aria-expanded="true"] .tpz-menu-toggle-icon::before {
  top: 0;
  transform: rotate(45deg);
}

.tpz-menu-toggle[aria-expanded="true"] .tpz-menu-toggle-icon::after {
  top: 0;
  transform: rotate(-45deg);
}

.tpz-main {
  min-height: calc(100vh - 220px);
}

.tpz-hero {
  padding: 5.8rem 0 2.8rem;
}

.tpz-hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 2rem;
  align-items: start;
}

.tpz-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.95rem;
  color: var(--tpz-orange-strong);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tpz-kicker::before {
  content: "";
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background: var(--tpz-orange-strong);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Space Grotesk", "Avenir Next", sans-serif;
  color: var(--tpz-text-50);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.45rem);
  max-width: 17ch;
}

h2 {
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
}

h3 {
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
}

.tpz-lead {
  margin: 1.2rem 0 0;
  max-width: 64ch;
  color: var(--tpz-text-200);
  font-size: 1.13rem;
}

.tpz-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.8rem;
}

.tpz-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.64rem 1.15rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: "Space Grotesk", "Avenir Next", sans-serif;
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 0.18s ease, border-color 0.18s ease, background-color 0.18s ease;
}

.tpz-button:hover {
  transform: translateY(-1px);
}

.tpz-button-primary {
  color: #1d1208;
  background: var(--tpz-orange);
}

.tpz-button-primary:hover,
.tpz-button-primary:visited {
  color: #1d1208;
}

.tpz-button-primary:hover {
  background: var(--tpz-orange-strong);
}

.tpz-button-secondary {
  color: var(--tpz-text-50);
  border-color: var(--tpz-line);
  background: rgba(255, 255, 255, 0.02);
}

.tpz-button-secondary:hover {
  border-color: rgba(245, 130, 32, 0.45);
}

.tpz-hero-panel {
  background: var(--tpz-panel);
  border: 1px solid var(--tpz-line);
  border-radius: var(--tpz-radius);
  box-shadow: var(--tpz-shadow);
  width: 100%;
  max-width: 450px;
  justify-self: end;
  margin-top: 1.15rem;
  padding: 1.16rem 1.02rem;
}

.tpz-hero-panel h3 {
  margin-bottom: 1rem;
}

.tpz-outcome-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.7rem;
}

.tpz-outcome-list li {
  position: relative;
  padding-left: 1rem;
  color: var(--tpz-text-200);
}

.tpz-outcome-list li strong {
  display: block;
  margin-bottom: 0.18rem;
  color: var(--tpz-text-50);
  font-family: "Space Grotesk", "Avenir Next", sans-serif;
  font-size: 0.97rem;
  font-weight: 600;
}

.tpz-outcome-list li::before {
  content: "";
  position: absolute;
  top: 0.62rem;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--tpz-orange);
}

.tpz-section {
  padding: 3.3rem 0;
}

.tpz-section-head {
  margin-bottom: 1.45rem;
}

.tpz-section-head p {
  margin: 0.75rem 0 0;
  color: var(--tpz-text-400);
  max-width: 66ch;
}

.tpz-grid {
  display: grid;
  gap: 1rem;
}

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

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

.tpz-card {
  background: var(--tpz-panel);
  border: 1px solid var(--tpz-line);
  border-radius: var(--tpz-radius);
  padding: 1.25rem 1.15rem;
}

.tpz-card p {
  margin: 0.68rem 0 0;
  color: var(--tpz-text-400);
}

.tpz-card-accent {
  border-color: rgba(245, 130, 32, 0.45);
  background: linear-gradient(145deg, rgba(245, 130, 32, 0.16), rgba(245, 130, 32, 0.03));
}

.tpz-card-accent h3 {
  color: #fff4e9;
}

.tpz-card-link {
  display: inline-flex;
  align-items: center;
  margin-top: 0.95rem;
  color: var(--tpz-orange-strong);
  font-weight: 700;
  font-size: 0.9rem;
}

.tpz-card-link::after {
  content: "->";
  margin-left: 0.35rem;
}

.tpz-trust-note {
  margin: 0;
  padding: 1rem 1.15rem;
  border-left: 3px solid var(--tpz-orange);
  background: rgba(245, 130, 32, 0.08);
  color: var(--tpz-text-200);
  border-radius: 10px;
}

.tpz-cases {
  margin-top: 1rem;
}

.tpz-case {
  padding: 1.2rem;
  border-radius: var(--tpz-radius);
  border: 1px solid var(--tpz-line);
  background: rgba(255, 255, 255, 0.02);
}

.tpz-case p {
  margin: 0.65rem 0 0;
  color: var(--tpz-text-400);
}

.tpz-cta-band {
  margin-top: 0.9rem;
  padding: 1.35rem 1.2rem;
  border: 1px solid rgba(245, 130, 32, 0.35);
  background: linear-gradient(125deg, rgba(245, 130, 32, 0.2), rgba(245, 130, 32, 0.03));
  border-radius: var(--tpz-radius);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.tpz-cta-band p {
  margin: 0;
  color: var(--tpz-text-50);
  font-family: "Space Grotesk", "Avenir Next", sans-serif;
  font-size: 1.12rem;
  font-weight: 600;
}

.tpz-page-header {
  padding: 4.7rem 0 2rem;
}

.tpz-page-header p {
  margin: 0.8rem 0 0;
  color: var(--tpz-text-400);
  max-width: 68ch;
}

.tpz-page-content {
  padding-bottom: 3.8rem;
}

.tpz-page-content h2,
.tpz-page-content h3 {
  margin: 1.6rem 0 0.65rem;
}

.tpz-page-content p {
  margin: 0.68rem 0 0;
}

.tpz-page-content ul,
.tpz-page-content ol {
  margin: 0.85rem 0 0;
  padding-left: 1.15rem;
}

.tpz-page-content li + li {
  margin-top: 0.45rem;
}

.tpz-page-content a {
  color: var(--tpz-orange-strong);
}

.tpz-page-content a.tpz-button-primary,
.tpz-page-content a.tpz-button-primary:hover,
.tpz-page-content a.tpz-button-primary:visited {
  color: #1d1208;
}

.tpz-page-content a.tpz-button-secondary,
.tpz-page-content a.tpz-button-secondary:hover,
.tpz-page-content a.tpz-button-secondary:visited {
  color: var(--tpz-text-50);
}

.tpz-cta-band-personal {
  margin-top: 1rem;
  padding: 0.95rem 1rem;
  gap: 0.6rem;
}

.tpz-cta-band-copy {
  flex: 1 1 460px;
}

.tpz-page-content .tpz-cta-band-copy .tpz-cta-band-line {
  margin: 0;
  color: var(--tpz-text-50);
  font-family: "Space Grotesk", "Avenir Next", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
}

.tpz-page-content .tpz-cta-band-personal .tpz-button-primary {
  background: var(--tpz-orange);
  color: #1d1208;
  border-color: transparent;
  min-height: 40px;
  padding: 0.52rem 0.95rem;
}

.tpz-page-content .tpz-cta-band-personal .tpz-button-primary:hover,
.tpz-page-content .tpz-cta-band-personal .tpz-button-primary:visited {
  background: var(--tpz-orange-strong);
  color: #1d1208;
}

.tpz-contact-options-callout {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem 1.1rem;
}

.tpz-contact-option-row {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0.45rem;
  min-width: 0;
}

.tpz-page-content .tpz-contact-option-text {
  margin: 0;
  color: var(--tpz-text-50);
  font-family: "Space Grotesk", "Avenir Next", sans-serif;
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
}

.tpz-page-content .tpz-contact-option-row .tpz-button {
  min-height: 40px;
  padding: 0.52rem 0.95rem;
  width: auto;
}

.tpz-form-wrap {
  margin-top: 1.15rem;
}

.tpz-signal-widget {
  border: 1px solid rgba(245, 130, 32, 0.36);
  border-radius: 14px;
  background: rgba(245, 130, 32, 0.08);
  padding: 0.95rem 1rem;
  margin: 1rem 0 0.85rem;
}

.tpz-signal-widget h3 {
  margin: 0;
  font-size: 1.05rem;
}

.tpz-signal-widget p {
  margin: 0.5rem 0 0.75rem;
  color: var(--tpz-text-200);
}

.tpz-signal-widget .tpz-button {
  width: auto;
  min-width: 180px;
}

.tpz-signal-widget-modal {
  margin-top: 1rem;
}

.tpz-form-alert {
  border-radius: 12px;
  border: 1px solid transparent;
  padding: 0.9rem 1rem;
  margin-bottom: 0.95rem;
}

.tpz-form-alert p {
  margin: 0;
}

.tpz-form-alert ul {
  margin: 0.65rem 0 0;
}

.tpz-form-alert-success {
  border-color: rgba(108, 224, 162, 0.55);
  background: rgba(108, 224, 162, 0.12);
  color: #d7fbe8;
}

.tpz-form-alert-error {
  border-color: rgba(255, 130, 130, 0.52);
  background: rgba(255, 130, 130, 0.11);
  color: #ffdede;
}

.tpz-form {
  border: 1px solid var(--tpz-line);
  border-radius: var(--tpz-radius);
  background: var(--tpz-panel);
  padding: 1.2rem;
}

.tpz-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem;
}

.tpz-form-field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 0.95rem;
}

.tpz-form-field label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--tpz-text-200);
}

.tpz-form-field input,
.tpz-form-field select,
.tpz-form-field textarea {
  width: 100%;
  min-height: 44px;
  padding: 0.62rem 0.7rem;
  border: 1px solid rgba(168, 186, 219, 0.28);
  border-radius: 10px;
  background: rgba(5, 10, 20, 0.6);
  color: var(--tpz-text-50);
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  font-size: 0.98rem;
}

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

.tpz-form-field input:focus,
.tpz-form-field select:focus,
.tpz-form-field textarea:focus {
  outline: none;
  border-color: rgba(245, 130, 32, 0.7);
  box-shadow: 0 0 0 3px rgba(245, 130, 32, 0.16);
}

.tpz-form-checkbox {
  margin: 0.45rem 0 1rem;
}

.tpz-form-checkbox label {
  display: inline-flex;
  align-items: center;
  gap: 0.52rem;
  font-size: 0.95rem;
  color: var(--tpz-text-200);
}

.tpz-form-checkbox input[type="checkbox"] {
  width: 17px;
  height: 17px;
}

.tpz-hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

body.tpz-modal-open {
  overflow: hidden;
}

.tpz-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.tpz-modal[hidden] {
  display: none !important;
}

.tpz-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 4, 9, 0.72);
}

.tpz-modal-panel {
  position: relative;
  width: min(900px, 100%);
  max-height: calc(100vh - 2rem);
  overflow: auto;
  border-radius: 16px;
  border: 1px solid var(--tpz-line);
  background: linear-gradient(180deg, rgba(11, 18, 32, 0.98), rgba(8, 14, 24, 0.98));
  padding: 1.1rem;
  box-shadow: var(--tpz-shadow);
}

.tpz-modal-close {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0.4rem 0.72rem;
  border-radius: 999px;
  border: 1px solid var(--tpz-line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--tpz-text-200);
  font-family: "Space Grotesk", "Avenir Next", sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  cursor: pointer;
}

.tpz-modal-close:hover {
  border-color: rgba(245, 130, 32, 0.45);
}

.tpz-modal-panel h2 {
  margin-top: 0.5rem;
}

.tpz-modal-intro {
  margin: 0.65rem 0 1rem;
  color: var(--tpz-text-400);
}

.tpz-modal-fallback {
  margin: 0.85rem 0 0;
  color: var(--tpz-text-400);
  font-size: 0.92rem;
}

.tpz-modal-fallback a {
  color: var(--tpz-orange-strong);
}

.tpz-site-footer {
  border-top: 1px solid var(--tpz-line);
  padding: 2rem 0 2.4rem;
  background: rgba(10, 14, 24, 0.88);
}

.tpz-footer-personal-callout {
  margin: 0 0 1.1rem;
}

.tpz-footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
}

.tpz-footer-grid p {
  margin: 0;
  color: var(--tpz-text-400);
  font-size: 0.95rem;
}

.tpz-footer-grid a {
  color: var(--tpz-text-200);
}

.tpz-footer-grid a:hover {
  color: var(--tpz-orange-strong);
}

@media (max-width: 980px) {
  .tpz-hero-grid,
  .tpz-grid-3 {
    grid-template-columns: 1fr;
  }

  .tpz-hero-grid {
    gap: 1.3rem;
  }

  .tpz-hero-copy {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .tpz-hero-copy h1,
  .tpz-hero-copy .tpz-lead {
    margin-inline: auto;
  }

  .tpz-hero-copy h1 {
    max-width: 20ch;
  }

  .tpz-hero-copy .tpz-lead {
    max-width: 42ch;
  }

  .tpz-hero-copy .tpz-kicker {
    justify-content: center;
  }

  .tpz-hero-copy .tpz-cta-row {
    justify-content: center;
    width: 100%;
  }

  .tpz-hero-panel {
    max-width: 700px;
    width: 100%;
    margin-inline: auto;
    margin-top: 0;
    justify-self: stretch;
    text-align: left;
  }

  .tpz-grid-2 {
    grid-template-columns: 1fr;
  }

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

  .tpz-modal {
    padding: 0.65rem;
  }

  .tpz-modal-panel {
    max-height: calc(100vh - 1.3rem);
    padding: 0.9rem;
  }

  .tpz-cta-band-copy {
    flex-basis: 100%;
  }

  .tpz-page-content .tpz-cta-band-copy .tpz-cta-band-line {
    white-space: normal;
  }

  .tpz-hero {
    padding: 4.45rem 0 2.35rem;
  }

  .tpz-contact-options-callout {
    justify-content: center;
  }
}

@media (max-width: 900px) {
  .tpz-menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .tpz-nav {
    position: static;
    margin-left: 0;
    width: 0;
    flex: 0 0 0;
  }

  .tpz-nav .tpz-menu {
    position: absolute;
    top: calc(100% + 0.55rem);
    right: 0;
    z-index: 80;
    min-width: min(300px, calc(100vw - 2.6rem));
    flex-direction: column;
    align-items: stretch;
    gap: 0.2rem;
    padding: 0.55rem;
    margin: 0;
    border: 1px solid var(--tpz-line);
    border-radius: 12px;
    background: rgba(9, 15, 30, 0.98);
    box-shadow: var(--tpz-shadow);
    backdrop-filter: blur(10px);
  }

  .tpz-nav[data-nav-state="closed"] .tpz-menu {
    display: none;
  }

  .tpz-nav[data-nav-state="open"] .tpz-menu {
    display: flex;
  }

  .tpz-menu li {
    width: 100%;
  }

  .tpz-menu a {
    display: block;
    width: 100%;
    padding: 0.54rem 0.68rem;
    border-radius: 8px;
    font-size: 0.95rem;
  }

  .tpz-menu a:hover,
  .tpz-menu .current-menu-item a {
    background: rgba(255, 255, 255, 0.07);
  }
}

@media (max-width: 760px) {
  .tpz-site-header .tpz-shell {
    min-height: 68px;
  }

  .tpz-brand-text small {
    display: none;
  }

  .tpz-cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .tpz-hero {
    padding: 3.8rem 0 2rem;
  }

  .tpz-hero-copy h1 {
    max-width: 13.5ch;
    font-size: clamp(1.75rem, 8.8vw, 2.3rem);
  }

  .tpz-hero-copy .tpz-lead {
    max-width: 32ch;
    font-size: 1.02rem;
  }

  .tpz-hero-copy .tpz-cta-row {
    width: 100%;
    max-width: 360px;
    align-items: center;
    gap: 0.65rem;
  }

  .tpz-hero-copy .tpz-cta-row .tpz-button {
    width: 100%;
  }

  .tpz-button {
    width: 100%;
  }

  .tpz-footer-personal-callout {
    margin-bottom: 1rem;
  }

  .tpz-contact-options-callout {
    display: grid;
    gap: 0.75rem;
  }

  .tpz-contact-option-row {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0.55rem;
  }

  .tpz-page-content .tpz-contact-option-text {
    white-space: normal;
  }

  .tpz-page-content .tpz-contact-option-row .tpz-button {
    width: 100%;
  }
}
