/* Hire WordPress / white-label agency — minimal page styles */

:root {
  --wp-text: #0f172a;
  --wp-muted: #475569;
  --wp-border: #e2e8f0;
  --wp-bg: #f8fafc;
  --wp-accent: #1d4ed8;
  --wp-accent-hover: #1e40af;
  --wp-green: #059669;
  --wp-radius: 10px;
  --wp-max: 72rem;
  --wp-font: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

body.page-hire-wp-agency {
  margin: 0;
  font-family: var(--wp-font);
  color: var(--wp-text);
  line-height: 1.55;
  overflow-x: hidden;
}

.header-spacer {
  height: 80px;
}

#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  min-height: 80px;
}

.page-hire-wp-agency .header-embed {
  width: 100vw;
  position: relative;
  left: 50%;
  margin-left: -50vw;
  line-height: 0;
}

.page-hire-wp-agency .header-frame {
  width: 100%;
  height: 82px;
  border: 0;
  display: block;
}

.page-hire-wp-agency .full-footer-embed {
  width: 100vw;
  position: relative;
  left: 50%;
  margin-left: -50vw;
  line-height: 0;
}

.page-hire-wp-agency .full-footer-frame {
  width: 100%;
  height: 286px;
  border: 0;
  display: block;
}

@media (max-width: 768px) {
  .page-hire-wp-agency .header-frame {
    height: 74px;
  }
  .page-hire-wp-agency .full-footer-frame {
    height: 330px;
  }
  .header-spacer {
    height: 70px;
  }
}

.wp-main {
  display: block;
}

.wp-container {
  max-width: var(--wp-max);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Floating CTAs */
.page-hire-wp-agency .float-icon {
  position: fixed !important;
  bottom: max(16px, env(safe-area-inset-bottom, 0px)) !important;
  width: 56px !important;
  height: 56px !important;
  border-radius: 999px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.22);
  z-index: 2147483000 !important;
}

.page-hire-wp-agency .float-wa {
  left: max(14px, env(safe-area-inset-left, 0px)) !important;
  background: #25d366;
}

.page-hire-wp-agency .float-call {
  right: max(14px, env(safe-area-inset-right, 0px)) !important;
  background: var(--wp-accent);
}

.page-hire-wp-agency .float-icon i {
  font-size: 26px !important;
}

/* Hero */
.wp-hero {
  padding: 2.5rem 0 2.75rem;
  background: linear-gradient(165deg, #f5f7fb 0%, #fafcff 50%, #eef6ff 100%);
  border-bottom: 1px solid var(--wp-border);
}

.wp-hero h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.65rem, 4vw, 2.35rem);
  line-height: 1.2;
  font-weight: 800;
}

.wp-eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--wp-accent);
}

.wp-hero-lead {
  margin: 0 0 1.25rem;
  color: var(--wp-muted);
  font-size: 1.05rem;
  max-width: 52rem;
}

.wp-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
}

.wp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.15rem;
  border-radius: var(--wp-radius);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid transparent;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.wp-btn--primary {
  background: var(--wp-accent);
  color: #fff;
}

.wp-btn--primary:hover {
  background: var(--wp-accent-hover);
  color: #fff;
}

.wp-btn--outline {
  background: #fff;
  color: var(--wp-text);
  border-color: var(--wp-border);
}

.wp-btn--outline:hover {
  border-color: #cbd5e1;
  background: #f8fafc;
}

.wp-stats {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(7.5rem, 1fr));
  gap: 1rem;
  max-width: 36rem;
}

.wp-stats strong {
  display: block;
  font-size: 1.35rem;
  color: var(--wp-text);
}

.wp-stats span {
  font-size: 0.8rem;
  color: var(--wp-muted);
}

/* Breadcrumb */
.wp-breadcrumb {
  background: var(--wp-bg);
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--wp-border);
}

.wp-breadcrumb ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  font-size: 0.875rem;
}

.wp-breadcrumb a {
  color: var(--wp-accent);
  text-decoration: none;
}

.wp-breadcrumb a:hover {
  text-decoration: underline;
}

.wp-breadcrumb li:not(:last-child)::after {
  content: "/";
  margin-left: 0.5rem;
  color: #94a3b8;
}

.wp-breadcrumb .is-active {
  color: var(--wp-muted);
}

/* Sections */
.wp-section {
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--wp-border);
}

.wp-section:last-of-type {
  border-bottom: none;
}

.wp-section h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  line-height: 1.25;
}

.wp-section h2 span {
  color: var(--wp-accent);
}

.wp-lead {
  margin: 0 0 1rem;
  color: var(--wp-muted);
  max-width: 52rem;
}

.wp-sub {
  margin: 0 0 1rem;
  color: var(--wp-muted);
  font-size: 0.95rem;
}

/* Service grid (plain chips) */
.wp-service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(15rem, 1fr));
  gap: 0.6rem;
  margin: 1.25rem 0;
}

.wp-service-item {
  padding: 0.65rem 0.85rem;
  background: #fff;
  border: 1px solid var(--wp-border);
  border-radius: var(--wp-radius);
  font-size: 0.9rem;
  font-weight: 500;
}

/* Category blocks */
.wp-cats {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.wp-cat {
  padding: 1.15rem 1.25rem;
  background: #fff;
  border: 1px solid var(--wp-border);
  border-radius: var(--wp-radius);
}

.wp-cat h3 {
  margin: 0 0 0.75rem;
  font-size: 1.05rem;
}

.wp-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.wp-chips span {
  font-size: 0.78rem;
  padding: 0.3rem 0.55rem;
  background: var(--wp-bg);
  border-radius: 6px;
  color: var(--wp-muted);
}

/* Awards / highlights — text only */
.wp-highlights {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .wp-highlights {
    grid-template-columns: 1fr 1fr;
  }
}

.wp-highlight {
  padding: 1rem;
  background: #fff;
  border: 1px solid var(--wp-border);
  border-radius: var(--wp-radius);
}

.wp-highlight h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
}

.wp-highlight p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--wp-muted);
}

.wp-highlights--services {
  list-style: none;
  margin: 0.25rem 0 0;
  padding: 0;
}

.wp-highlights--services .wp-highlight h3 {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* Tables */
.wp-table-wrap {
  overflow-x: auto;
  margin: 1rem 0;
  border: 1px solid var(--wp-border);
  border-radius: var(--wp-radius);
}

.wp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.wp-table th,
.wp-table td {
  padding: 0.65rem 0.75rem;
  text-align: left;
  border-bottom: 1px solid var(--wp-border);
  vertical-align: top;
}

.wp-table th {
  background: var(--wp-bg);
  font-weight: 700;
}

.wp-table tbody tr:last-child td {
  border-bottom: none;
}

.wp-table .price {
  font-weight: 700;
  color: var(--wp-green);
  white-space: nowrap;
}

.wp-table .hl {
  background: #eff6ff;
}

/* Simple grids */
.wp-grid-2 {
  display: grid;
  gap: 1rem;
}

@media (min-width: 720px) {
  .wp-grid-2 {
    grid-template-columns: 1fr 1fr;
  }
}

.wp-box {
  padding: 0.85rem 1rem;
  background: #fff;
  border: 1px solid var(--wp-border);
  border-radius: var(--wp-radius);
  font-size: 0.9rem;
}

.wp-list {
  margin: 0.5rem 0 0;
  padding-left: 1.15rem;
  color: var(--wp-muted);
}

.wp-list li {
  margin-bottom: 0.35rem;
}

/* Expertise panels */
.wp-panel {
  background: #fff;
  border: 1px solid var(--wp-border);
  border-radius: var(--wp-radius);
  padding: 1.25rem;
  margin-top: 1rem;
}

.wp-panel h3 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
}

.wp-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 0.75rem;
}

.wp-pills span {
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  background: var(--wp-bg);
  border-radius: 999px;
  color: var(--wp-muted);
}

/* Engagement cards */
.wp-cards {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .wp-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

.wp-card {
  padding: 1rem;
  background: var(--wp-bg);
  border-radius: var(--wp-radius);
  border: 1px solid var(--wp-border);
}

.wp-card h4 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
}

.wp-card p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--wp-muted);
}

.wp-disclaimer {
  margin-top: 1.5rem;
  padding: 1rem;
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: var(--wp-radius);
  font-size: 0.85rem;
}

/* Process */
.wp-process {
  list-style: decimal;
  margin: 1rem 0 0;
  padding-left: 1.25rem;
}

.wp-process li {
  margin-bottom: 1rem;
}

.wp-process h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
}

.wp-process p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--wp-muted);
}

/* FAQ */
.wp-faq-grid {
  display: grid;
  gap: 0.85rem;
}

@media (min-width: 720px) {
  .wp-faq-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.wp-faq-item {
  padding: 0.85rem 1rem;
  background: #fff;
  border: 1px solid var(--wp-border);
  border-radius: var(--wp-radius);
}

.wp-faq-item h3 {
  margin: 0 0 0.35rem;
  font-size: 0.9rem;
}

.wp-faq-item p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--wp-muted);
}

/* Connect / CTA */
.wp-connect {
  background: var(--wp-bg);
}

.wp-connect-inner {
  padding: 1.5rem;
  background: #fff;
  border: 1px solid var(--wp-border);
  border-radius: var(--wp-radius);
}

.wp-stat-grid {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}

@media (min-width: 560px) {
  .wp-stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.wp-stat-card {
  padding: 0.75rem;
  background: var(--wp-bg);
  border-radius: 8px;
}

.wp-stat-card h3 {
  margin: 0 0 0.2rem;
  font-size: 0.9rem;
}

.wp-stat-card p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--wp-muted);
}

.wp-cta {
  padding: 2rem 0;
  background: linear-gradient(135deg, #1e3a8a 0%, #1d4ed8 100%);
  color: #fff;
}

.wp-cta-inner {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto;
}

.wp-cta h2 {
  margin: 0 0 0.5rem;
  color: #fff;
}

.wp-cta p {
  margin: 0 0 1.25rem;
  opacity: 0.95;
  font-size: 0.95rem;
}

.wp-cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
}

.wp-cta-btns a {
  display: inline-flex;
  padding: 0.6rem 1rem;
  background: #fff;
  color: #1e3a8a;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--wp-radius);
  font-size: 0.9rem;
}

.wp-cta-btns a:hover {
  background: #e0e7ff;
}

/* Contact form */
.wp-contact-form {
  max-width: 32rem;
  margin: 0 auto;
}

.wp-contact-form h2 {
  margin: 0 0 0.25rem;
}

.wp-contact-form .sub {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  color: var(--wp-muted);
}

.wp-form-group {
  margin-bottom: 0.75rem;
}

.wp-form-group input,
.wp-form-group textarea {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--wp-border);
  border-radius: 8px;
  font: inherit;
}

.wp-form-group textarea {
  min-height: 6rem;
  resize: vertical;
}

.wp-btn-submit {
  width: 100%;
  padding: 0.75rem;
  background: var(--wp-green);
  color: #fff;
  border: none;
  border-radius: var(--wp-radius);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
}

.wp-btn-submit:hover {
  background: #047857;
}

.wp-privacy-note {
  margin: 0.75rem 0 0;
  font-size: 0.8rem;
  color: var(--wp-muted);
}

/* Long article */
.wp-article {
  padding: 2.5rem 0;
  background: #fff;
}

.wp-article-head {
  margin-bottom: 1rem;
}

.wp-article-head p {
  margin: 0.35rem 0 0;
  color: var(--wp-muted);
}

.wp-article .wp-intro {
  font-size: 1rem;
  color: var(--wp-text);
}

.wp-more {
  margin-top: 1rem;
  padding: 0.5rem 0;
}

.wp-more summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--wp-accent);
}

.wp-more[open] summary {
  margin-bottom: 0.75rem;
}

.wp-more .inner h2 {
  font-size: 1.15rem;
  margin: 1.25rem 0 0.5rem;
}

.wp-more .inner h3 {
  font-size: 1rem;
  margin: 1rem 0 0.35rem;
}

.wp-more .inner p {
  margin: 0 0 0.65rem;
  font-size: 0.92rem;
  color: var(--wp-muted);
}

/* Section header helper */
.wp-section-title {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 1.5rem;
}

.wp-section-title h2 {
  margin-bottom: 0.35rem;
}

.wp-section-title p {
  margin: 0;
  color: var(--wp-muted);
  font-size: 0.95rem;
}

/* Pricing & comparison helpers */
.wp-pricing-intro h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
}

.wp-pricing-intro h2 span {
  color: var(--wp-accent);
}

.wp-pricing-intro p {
  margin: 0;
  color: var(--wp-muted);
  max-width: 52rem;
}

.wp-pricing-block {
  margin-top: 2rem;
}

.wp-pricing-heading {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  font-weight: 700;
}

.wp-pricing-heading span {
  color: var(--wp-accent);
}

.wp-pricing-sub {
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
  color: var(--wp-muted);
}

.wp-engage {
  margin-top: 2rem;
}

.wp-engage-title {
  margin: 0 0 0.75rem;
  font-size: 1.05rem;
}

.wp-process-intro h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
}

.wp-process-intro h2 span {
  color: var(--wp-accent);
}

.wp-cmp-sub {
  margin: 0 0 1rem;
  color: var(--wp-muted);
  font-size: 0.95rem;
}

.wp-table .col-fr {
  background: #f8fafc;
}

.wp-subhead {
  margin: 1.5rem 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 700;
}

.wp-subhead--tools {
  margin: 1rem 0 0.35rem;
  font-size: 1rem;
  font-weight: 700;
}

.wp-connect-inner .section-title {
  margin: 0 0 0.5rem;
  font-size: 1.35rem;
}

/* Section 3: enterprise WordPress agency comparison */
.wp-table-wrap--enterprise {
  -webkit-overflow-scrolling: touch;
}

.wp-table--enterprise-cmp {
  min-width: 72rem;
  font-size: 0.8125rem;
}

.wp-table--enterprise-cmp tbody th {
  background: #f8fafc;
  font-weight: 600;
  color: var(--wp-text, #0f172a);
}

.wp-wpagency-prose {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--wp-border);
  max-width: 48rem;
}

.wp-wpagency-prose-lead {
  margin: 0 0 0.75rem;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.wp-wpagency-prose h3 {
  margin: 1.5rem 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 700;
}

.wp-wpagency-prose h3:first-of-type {
  margin-top: 0;
}

.wp-wpagency-prose p {
  margin: 0 0 0.85rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--wp-muted);
}

.wp-wpagency-prose p:last-child {
  margin-bottom: 0;
}

/* Pricing callout */
.page-hire-wp-agency .wp-pricing-cta-card {
  max-width: 42rem;
  padding: 1.25rem 1.35rem;
  background: linear-gradient(135deg, #eff6ff 0%, #f8fafc 100%);
  border: 1px solid var(--wp-border);
  border-radius: var(--wp-radius);
}

.page-hire-wp-agency .wp-pricing-cta-heading {
  margin: 0 0 0.35rem;
  font-size: clamp(1.15rem, 2.5vw, 1.35rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.page-hire-wp-agency .wp-pricing-cta-text {
  margin: 0;
  font-size: 0.98rem;
  color: var(--wp-muted);
  line-height: 1.6;
}

.page-hire-wp-agency .wp-pricing-cta-link {
  color: var(--wp-accent);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.page-hire-wp-agency .wp-pricing-cta-link:hover {
  color: var(--wp-accent-hover);
}

/* Testimonials */
.page-hire-wp-agency .wp-hire-testimonials-inner > h2 {
  margin: 0 0 1.5rem;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.page-hire-wp-agency .wp-hire-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem 1.5rem;
}

.page-hire-wp-agency .wp-hire-testimonial-card {
  margin: 0;
  padding: 1.25rem 1.2rem 1.1rem;
  background: var(--wp-bg);
  border: 1px solid var(--wp-border);
  border-radius: var(--wp-radius);
  border-left: 4px solid var(--wp-accent);
}

.page-hire-wp-agency .wp-hire-testimonial-text {
  margin: 0 0 0.85rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--wp-muted);
}

.page-hire-wp-agency .wp-hire-testimonial-attrib {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--wp-text);
}

.page-hire-wp-agency .wp-hire-testimonial-name {
  font-weight: 700;
}

.page-hire-wp-agency .wp-hire-testimonial-role {
  font-weight: 500;
  color: #64748b;
}

/* Connect + form */
.page-hire-wp-agency .wp-hire-connect-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 2.5rem;
  align-items: start;
  max-width: 920px;
  margin: 0 auto;
}

.page-hire-wp-agency .wp-hire-connect-aside h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.page-hire-wp-agency .wp-hire-connect-lead {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  color: var(--wp-muted);
  line-height: 1.65;
}

.page-hire-wp-agency .wp-hire-connect-phone,
.page-hire-wp-agency .wp-hire-connect-email {
  margin: 0 0 0.35rem;
  font-size: 0.9rem;
}

.page-hire-wp-agency .wp-hire-connect-phone a,
.page-hire-wp-agency .wp-hire-connect-email a {
  color: var(--wp-accent);
  text-decoration: none;
  font-weight: 600;
}

.page-hire-wp-agency .wp-hire-connect-phone a:hover,
.page-hire-wp-agency .wp-hire-connect-email a:hover {
  text-decoration: underline;
}

.page-hire-wp-agency .wp-hire-connect-wa {
  margin: 1rem 0 0;
}

.page-hire-wp-agency .wp-hire-connect-wa .wp-btn {
  font-size: 0.9rem;
}

.page-hire-wp-agency .wp-hire-form-card {
  border: 1px solid var(--wp-border);
  border-radius: 12px;
  padding: 1.35rem 1.25rem 1.2rem;
  background: var(--wp-bg);
}

.page-hire-wp-agency .wp-hire-form-heading {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  font-weight: 800;
}

.page-hire-wp-agency .wp-hire-form-hint {
  margin: 0 0 1rem;
  font-size: 0.8125rem;
  color: var(--wp-muted);
  line-height: 1.5;
}

.page-hire-wp-agency .wp-hire-min-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.page-hire-wp-agency .wp-hire-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 1rem;
}

.page-hire-wp-agency .wp-hire-field {
  margin-bottom: 0.85rem;
}

.page-hire-wp-agency .wp-hire-form-row .wp-hire-field {
  margin-bottom: 0.85rem;
}

.page-hire-wp-agency .wp-hire-field label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  margin: 0 0 0.35rem;
}

.page-hire-wp-agency .wp-hire-req {
  color: #b91c1c;
  text-decoration: none;
  font-weight: 700;
  border: 0;
  cursor: help;
}

.page-hire-wp-agency .wp-hire-opt {
  font-weight: 500;
  color: #64748b;
  font-size: 0.8125rem;
}

.page-hire-wp-agency .wp-hire-min-form input,
.page-hire-wp-agency .wp-hire-min-form textarea {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-size: 0.9rem;
  font-family: inherit;
  line-height: 1.45;
  background: #fff;
  color: var(--wp-text);
  box-sizing: border-box;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.page-hire-wp-agency .wp-hire-min-form input::placeholder,
.page-hire-wp-agency .wp-hire-min-form textarea::placeholder {
  color: #94a3b8;
}

.page-hire-wp-agency .wp-hire-min-form input:hover,
.page-hire-wp-agency .wp-hire-min-form textarea:hover {
  border-color: #94a3b8;
}

.page-hire-wp-agency .wp-hire-min-form input:focus-visible,
.page-hire-wp-agency .wp-hire-min-form textarea:focus-visible {
  outline: none;
  border-color: var(--wp-accent);
  box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.2);
}

.page-hire-wp-agency .wp-hire-min-form textarea {
  resize: vertical;
  min-height: 96px;
}

.page-hire-wp-agency .wp-hire-min-submit {
  margin-top: 0.25rem;
  padding: 0.75rem 1.1rem;
  border: none;
  border-radius: 8px;
  background: #25d366;
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  font-family: inherit;
}

.page-hire-wp-agency .wp-hire-min-submit .fa-whatsapp {
  font-size: 1.2rem;
  line-height: 1;
}

.page-hire-wp-agency .wp-hire-min-submit:hover {
  background: #20bd5a;
}

.page-hire-wp-agency .wp-hire-min-submit:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.35);
}

.page-hire-wp-agency .wp-hire-form-privacy {
  margin: 0.85rem 0 0;
  font-size: 0.75rem;
  line-height: 1.45;
  color: #64748b;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.page-hire-wp-agency .wp-hire-form-privacy .fa-lock {
  margin-top: 2px;
  flex-shrink: 0;
  color: var(--wp-accent);
  font-size: 0.7rem;
}

@media (max-width: 768px) {
  .page-hire-wp-agency .wp-hire-testimonials-grid {
    grid-template-columns: 1fr;
  }

  .page-hire-wp-agency .wp-hire-connect-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .page-hire-wp-agency .wp-hire-form-row {
    grid-template-columns: 1fr;
  }
}
