/*
Theme Name: OOH Price Platform
Theme URI: https://quangcaoooh.vn
Author: quangcaoooh.vn
Description: Lightweight WordPress theme for an OOH advertising price lookup marketplace in Vietnam.
Version: 1.1.2
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
Text Domain: ooh-price-platform
*/

:root {
  --ooh-blue: #0b2f57;
  --ooh-blue-2: #114a7d;
  --ooh-blue-3: #e8f2fb;
  --ooh-orange: #f97316;
  --ooh-orange-2: #fb923c;
  --ooh-text: #17324d;
  --ooh-muted: #63758a;
  --ooh-border: #dce6ef;
  --ooh-bg: #f6f9fc;
  --ooh-white: #ffffff;
  --ooh-radius: 8px;
  --ooh-shadow: 0 12px 30px rgba(11, 47, 87, 0.1);
}

* {
  box-sizing: border-box;
}

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

a {
  color: var(--ooh-blue-2);
  text-decoration: none;
}

a:hover {
  color: var(--ooh-orange);
}

img {
  max-width: 100%;
  height: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--ooh-border);
  backdrop-filter: blur(10px);
}

.ooh-container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

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

.site-branding {
  display: flex;
  flex-direction: column;
  min-width: 190px;
}

.site-title {
  color: var(--ooh-blue);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0;
}

.site-tagline {
  color: var(--ooh-muted);
  font-size: 12px;
  line-height: 1.25;
}

.main-navigation {
  display: flex;
  align-items: center;
  gap: 20px;
}

.main-navigation ul {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-navigation a {
  color: var(--ooh-text);
  font-size: 14px;
  font-weight: 700;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--ooh-border);
  border-radius: 6px;
  background: var(--ooh-white);
  color: var(--ooh-blue);
  padding: 8px 10px;
  font-weight: 700;
}

.ooh-button,
.wp-block-button__link,
button,
input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 7px;
  background: var(--ooh-orange);
  color: var(--ooh-white);
  cursor: pointer;
  font-weight: 800;
  line-height: 1.2;
  padding: 13px 18px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.ooh-button:hover,
.wp-block-button__link:hover,
button:hover,
input[type="submit"]:hover {
  background: var(--ooh-orange-2);
  color: var(--ooh-white);
  transform: translateY(-1px);
}

.ooh-button.secondary {
  background: var(--ooh-blue);
}

.ooh-button.light {
  background: var(--ooh-white);
  color: var(--ooh-blue);
}

.hero {
  background: linear-gradient(135deg, var(--ooh-blue) 0%, #0f4777 60%, #14649b 100%);
  color: var(--ooh-white);
  padding: 68px 0 54px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 430px);
  gap: 38px;
  align-items: center;
}

.eyebrow {
  color: #ffcf9f;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 12px 0 16px;
  color: var(--ooh-white);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.05;
  letter-spacing: 0;
}

.hero p {
  max-width: 660px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 640px;
}

.hero-stat {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--ooh-radius);
  padding: 14px;
}

.hero-stat strong {
  display: block;
  color: #ffffff;
  font-size: 22px;
  line-height: 1.1;
}

.hero-stat span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.quick-form,
.ooh-form-box {
  background: var(--ooh-white);
  border: 1px solid var(--ooh-border);
  border-radius: var(--ooh-radius);
  box-shadow: var(--ooh-shadow);
  color: var(--ooh-text);
  padding: 22px;
}

.quick-form h2,
.ooh-form-box h2 {
  margin: 0 0 14px;
  color: var(--ooh-blue);
  font-size: 22px;
}

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

.ooh-form-grid .full {
  grid-column: 1 / -1;
}

label {
  display: block;
  color: var(--ooh-text);
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 5px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--ooh-border);
  border-radius: 7px;
  background: #ffffff;
  color: var(--ooh-text);
  font: inherit;
  padding: 11px 12px;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.section {
  padding: 56px 0;
}

.section.white {
  background: var(--ooh-white);
}

.section-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.section-title h2,
.entry-title,
.page-title {
  margin: 0;
  color: var(--ooh-blue);
  font-size: clamp(26px, 4vw, 38px);
  line-height: 1.15;
}

.section-title p {
  max-width: 620px;
  margin: 8px 0 0;
  color: var(--ooh-muted);
}

.service-grid,
.blog-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.service-card,
.blog-card,
.process-card,
.info-card {
  background: var(--ooh-white);
  border: 1px solid var(--ooh-border);
  border-radius: var(--ooh-radius);
  padding: 20px;
}

.service-card:hover,
.blog-card:hover {
  border-color: #b8cee0;
  box-shadow: 0 8px 24px rgba(11, 47, 87, 0.08);
}

.service-icon,
.process-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--ooh-blue-3);
  color: var(--ooh-blue);
  font-weight: 900;
  margin-bottom: 12px;
}

.service-card h3,
.blog-card h3,
.process-card h3,
.info-card h3 {
  margin: 0 0 8px;
  color: var(--ooh-blue);
  font-size: 18px;
  line-height: 1.3;
}

.service-card p,
.blog-card p,
.process-card p,
.info-card p {
  margin: 0;
  color: var(--ooh-muted);
  font-size: 14px;
}

.price-filter {
  background: var(--ooh-white);
  border: 1px solid var(--ooh-border);
  border-radius: var(--ooh-radius);
  padding: 18px;
  margin-bottom: 20px;
}

.price-filter-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  align-items: end;
}

.table-wrap {
  overflow-x: auto;
  background: var(--ooh-white);
  border: 1px solid var(--ooh-border);
  border-radius: var(--ooh-radius);
}

table.ooh-table {
  width: 100%;
  min-width: 980px;
  border-collapse: collapse;
}

.ooh-table th,
.ooh-table td {
  border-bottom: 1px solid var(--ooh-border);
  padding: 14px;
  text-align: left;
  vertical-align: middle;
}

.ooh-table th {
  background: #f0f6fb;
  color: var(--ooh-blue);
  font-size: 13px;
  text-transform: uppercase;
}

.ooh-table tr:last-child td {
  border-bottom: 0;
}

.price {
  color: var(--ooh-orange);
  font-weight: 900;
  white-space: nowrap;
}

.badge {
  display: inline-flex;
  border-radius: 999px;
  background: var(--ooh-blue-3);
  color: var(--ooh-blue);
  font-size: 12px;
  font-weight: 800;
  padding: 4px 9px;
}

.content-shell {
  padding: 46px 0 64px;
}

.entry-content {
  background: var(--ooh-white);
  border: 1px solid var(--ooh-border);
  border-radius: var(--ooh-radius);
  padding: 28px;
}

.entry-content h2,
.entry-content h3 {
  color: var(--ooh-blue);
  line-height: 1.25;
}

.single-service-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
  align-items: start;
}

.sidebar-sticky {
  position: sticky;
  top: 96px;
}

.faq-item {
  border-top: 1px solid var(--ooh-border);
  padding: 16px 0;
}

.faq-item strong {
  display: block;
  color: var(--ooh-blue);
  margin-bottom: 4px;
}

.notice {
  border-radius: var(--ooh-radius);
  padding: 12px 14px;
  margin: 0 0 16px;
}

.notice.success {
  background: #e9f9ef;
  color: #166534;
}

.notice.error {
  background: #fff1f2;
  color: #991b1b;
}

.site-footer {
  background: var(--ooh-blue);
  color: rgba(255, 255, 255, 0.76);
  padding: 42px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 24px;
}

.site-footer h2,
.site-footer h3 {
  margin-top: 0;
  color: #ffffff;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.86);
}

.footer-disclaimer {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  margin-top: 24px;
  padding-top: 18px;
  font-size: 13px;
}

.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.floating-actions a {
  min-width: 128px;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(11, 47, 87, 0.18);
  font-size: 14px;
}

.alignwide {
  max-width: 1180px;
}

@media (max-width: 980px) {
  .hero-grid,
  .single-service-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 760px) {
  .header-inner {
    min-height: 64px;
  }

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

  .main-navigation {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 66px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: var(--ooh-white);
    border: 1px solid var(--ooh-border);
    border-radius: var(--ooh-radius);
    box-shadow: var(--ooh-shadow);
    padding: 14px;
  }

  .main-navigation.is-open {
    display: flex;
  }

  .main-navigation ul {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .hero {
    padding: 42px 0;
  }

  .hero-stats,
  .ooh-form-grid,
  .service-grid,
  .blog-grid,
  .process-grid,
  .price-filter-grid {
    grid-template-columns: 1fr;
  }

  .entry-content,
  .quick-form,
  .ooh-form-box {
    padding: 18px;
  }

  .floating-actions {
    left: 12px;
    right: 12px;
    flex-direction: row;
  }

  .floating-actions a {
    flex: 1;
    min-width: 0;
    padding: 12px 10px;
  }
}

/* v1.1 conversion redesign */
body {
  background: #f4f7fb;
  color: #102a43;
  overflow-x: hidden;
}

.site-header {
  box-shadow: 0 8px 24px rgba(11, 47, 87, 0.06);
}

.site-title {
  font-size: 20px;
}

.main-navigation a {
  padding: 8px 0;
}

.main-navigation > .ooh-button {
  padding: 11px 16px;
  color: #fff;
}

.ooh-button.compact {
  padding: 10px 13px;
  font-size: 13px;
}

.entry-content {
  box-shadow: 0 14px 38px rgba(11, 47, 87, 0.06);
}

.page .content-shell .entry-content {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}

.entry-title {
  margin-bottom: 18px;
}

.page .entry-title {
  display: none;
}

.eyebrow.dark {
  color: var(--ooh-orange);
}

.hero-pro {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 20%, rgba(249, 115, 22, 0.18), transparent 28%),
    linear-gradient(135deg, #061a36 0%, #0b2f57 54%, #0e5d8f 100%);
  padding: 78px 0 76px;
}

.hero-pro::after {
  content: "";
  position: absolute;
  inset: auto -10% -48% 28%;
  height: 340px;
  background: rgba(255, 255, 255, 0.08);
  transform: rotate(-6deg);
}

.hero-pro-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
  gap: 46px;
  align-items: center;
}

.hero-copy h1 {
  max-width: 720px;
  margin-bottom: 18px;
  font-size: clamp(40px, 5vw, 64px);
  overflow-wrap: anywhere;
}

.hero-copy p {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 19px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 20px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-row span {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 11px;
  min-width: 0;
  white-space: normal;
}

.hero-visual {
  position: relative;
}

.hero-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--ooh-radius);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.hero-quote-card {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 2px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--ooh-radius);
  background: rgba(6, 26, 54, 0.82);
  color: #fff;
  padding: 16px;
  backdrop-filter: blur(10px);
}

.hero-quote-card span,
.hero-quote-card small {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.hero-quote-card strong {
  color: #fff;
  font-size: 24px;
  line-height: 1.15;
}

.quick-search-band {
  margin-top: -34px;
  position: relative;
  z-index: 4;
  padding-bottom: 28px;
}

.quick-form-pro {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 18px;
  align-items: end;
  border: 1px solid rgba(11, 47, 87, 0.08);
  box-shadow: 0 20px 45px rgba(11, 47, 87, 0.14);
}

.quick-form-head h2,
.form-heading h2 {
  margin: 4px 0 0;
}

.quick-form-fields {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  align-items: end;
}

.quick-form-fields p,
.price-filter-grid p,
.ooh-form-grid p {
  margin: 0;
}

input,
select,
textarea {
  min-height: 46px;
  border-color: #cddbea;
  background: #fff;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--ooh-blue-2);
  box-shadow: 0 0 0 3px rgba(17, 74, 125, 0.12);
  outline: 0;
}

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

.service-card-pro {
  display: flex;
  min-height: 235px;
  flex-direction: column;
  border-color: #d8e5f0;
  background: linear-gradient(180deg, #fff 0%, #f9fcff 100%);
}

.service-card-pro .service-icon {
  width: 44px;
  height: 34px;
  border-radius: 6px;
  font-size: 13px;
}

.service-card-pro h3 {
  font-size: 17px;
}

.service-card-pro strong {
  margin-top: auto;
  color: var(--ooh-orange);
  font-size: 13px;
}

.value-section {
  background: #eef5fb;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.value-card {
  border: 1px solid #d9e6f2;
  border-radius: var(--ooh-radius);
  background: #fff;
  padding: 22px;
}

.value-card span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--ooh-orange);
  font-size: 13px;
  font-weight: 900;
}

.value-card h3 {
  margin: 0 0 8px;
  color: var(--ooh-blue);
}

.value-card p {
  margin: 0;
  color: var(--ooh-muted);
}

.price-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.price-card {
  display: flex;
  min-height: 280px;
  flex-direction: column;
  border: 1px solid #d9e6f2;
  border-radius: var(--ooh-radius);
  background: #fff;
  box-shadow: 0 10px 28px rgba(11, 47, 87, 0.07);
  padding: 18px;
}

.price-card-top,
.price-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.price-card-top > span:last-child {
  color: var(--ooh-muted);
  font-size: 13px;
  font-weight: 800;
}

.price-card h3 {
  margin: 14px 0 12px;
  color: var(--ooh-blue);
  font-size: 18px;
  line-height: 1.3;
}

.price-card dl {
  display: grid;
  gap: 9px;
  margin: 0 0 18px;
}

.price-card dl div {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 10px;
}

.price-card dt {
  color: var(--ooh-muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.price-card dd {
  margin: 0;
  color: var(--ooh-text);
  font-size: 14px;
  font-weight: 700;
}

.price-card-bottom {
  margin-top: auto;
  border-top: 1px solid var(--ooh-border);
  padding-top: 14px;
}

.price-card-bottom strong {
  color: var(--ooh-orange);
  font-size: 17px;
  line-height: 1.25;
}

.cta-band {
  background: #061a36;
  color: #fff;
  padding: 42px 0;
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-band h2 {
  max-width: 760px;
  margin: 6px 0 0;
  color: #fff;
  font-size: clamp(25px, 3vw, 36px);
  line-height: 1.18;
}

.service-page-intro,
.price-command {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border: 1px solid #d9e6f2;
  border-radius: var(--ooh-radius);
  background: #fff;
  margin: 22px 0;
  padding: 22px;
}

.service-page-intro h2,
.price-command h2 {
  margin: 4px 0 8px;
  color: var(--ooh-blue);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.2;
}

.service-page-intro p,
.price-command p {
  max-width: 720px;
  margin: 0;
  color: var(--ooh-muted);
}

.price-command-stats {
  min-width: 132px;
  border-radius: var(--ooh-radius);
  background: var(--ooh-blue);
  color: #fff;
  padding: 15px;
  text-align: center;
}

.price-command-stats strong {
  display: block;
  font-size: 30px;
  line-height: 1;
}

.price-command-stats span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.price-filter-pro {
  position: sticky;
  top: 86px;
  z-index: 10;
  box-shadow: 0 12px 30px rgba(11, 47, 87, 0.08);
}

.table-title-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin: 30px 0 12px;
}

.table-title-row h2 {
  margin: 0;
  color: var(--ooh-blue);
}

.table-title-row p {
  margin: 0;
  color: var(--ooh-muted);
}

.table-wrap {
  box-shadow: 0 10px 26px rgba(11, 47, 87, 0.06);
}

.ooh-table th {
  background: #0b2f57;
  color: #fff;
}

.ooh-table td {
  background: #fff;
}

.ooh-table tr:hover td {
  background: #f7fbff;
}

.price-note {
  border: 1px solid #ffd7b5;
  border-radius: var(--ooh-radius);
  background: #fff7ed;
  color: #7c2d12;
  margin-top: 16px;
  padding: 13px 15px;
}

.quote-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: 24px;
  align-items: start;
  margin-top: 22px;
}

.quote-aside {
  border-radius: var(--ooh-radius);
  background: linear-gradient(135deg, #061a36, #0b2f57);
  color: #fff;
  padding: 28px;
}

.quote-aside h2 {
  margin: 8px 0 12px;
  color: #fff;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.18;
}

.quote-aside p,
.quote-aside li {
  color: rgba(255, 255, 255, 0.82);
}

.check-list {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
}

.check-list li {
  position: relative;
  padding-left: 26px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #ffcf9f;
  font-weight: 900;
}

.quote-form-pro {
  margin: 0;
  box-shadow: 0 16px 42px rgba(11, 47, 87, 0.1);
}

.form-heading {
  border-bottom: 1px solid var(--ooh-border);
  margin-bottom: 18px;
  padding-bottom: 14px;
}

.form-heading span {
  color: var(--ooh-orange);
  font-size: 13px;
  font-weight: 900;
}

.form-submit-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 16px;
}

.form-submit-row small {
  color: var(--ooh-muted);
}

.empty-state {
  grid-column: 1 / -1;
  border: 1px dashed #b9cbdb;
  border-radius: var(--ooh-radius);
  background: #fff;
  padding: 28px;
  text-align: center;
}

.single-service-layout .entry-content {
  box-shadow: 0 14px 38px rgba(11, 47, 87, 0.06);
}

.floating-actions a {
  border: 2px solid rgba(255, 255, 255, 0.9);
}

@media (max-width: 1120px) {
  .quick-form-pro,
  .hero-pro-grid,
  .quote-layout {
    grid-template-columns: 1fr;
  }

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

  .price-card-grid,
  .service-grid-pro,
  .value-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .hero-pro {
    padding: 42px 0 64px;
  }

  .hero-pro-grid {
    gap: 26px;
  }

  .hero-copy h1 {
    font-size: 34px;
    line-height: 1.12;
  }

  .hero-copy p {
    font-size: 16px;
  }

  .hero-actions,
  .cta-band-inner,
  .service-page-intro,
  .price-command,
  .table-title-row,
  .form-submit-row {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .ooh-button,
  .cta-band .ooh-button,
  .service-page-intro .ooh-button {
    width: 100%;
  }

  .hero-visual img {
    aspect-ratio: 1 / 0.78;
  }

  .trust-row {
    align-items: flex-start;
    flex-direction: column;
    overflow: hidden;
  }

  .trust-row span {
    max-width: 100%;
  }

  .quick-search-band {
    margin-top: -26px;
  }

  .quick-form-pro,
  .quote-aside,
  .quote-form-pro,
  .service-page-intro,
  .price-command {
    padding: 18px;
  }

  .quick-form-fields,
  .price-card-grid,
  .service-grid-pro,
  .value-grid,
  .quote-layout {
    grid-template-columns: 1fr;
  }

  .price-filter-pro {
    position: static;
  }

  .price-card {
    min-height: 0;
  }

  .price-card-bottom {
    align-items: stretch;
    flex-direction: column;
  }

  .price-card-bottom .ooh-button {
    width: 100%;
  }

  .content-shell {
    padding-top: 28px;
  }

  .floating-actions {
    left: 12px !important;
    right: 12px !important;
    bottom: 12px !important;
    width: auto !important;
    flex-direction: row !important;
  }

  .floating-actions a {
    flex: 1 1 0 !important;
    width: auto !important;
    min-width: 0 !important;
    padding: 11px 10px;
  }
}
