/*
Theme Name: SOID Sales Theme
Theme URI: https://sweb.servere.hu/
Author: Codex
Description: Egyedi SOID WordPress téma új és meglévő ügyfeleknek szánt értékesítési kezdőoldallal.
Version: 1.0.0
Text Domain: soid-sales
*/

:root {
  --bg: #f3f7fb;
  --surface: rgba(255, 255, 255, 0.9);
  --surface-strong: #ffffff;
  --surface-dark: #0d141d;
  --text: #18222f;
  --muted: #5d6a78;
  --line: rgba(24, 34, 47, 0.1);
  --primary: #0171bc;
  --primary-strong: #0a8fdf;
  --primary-soft: rgba(1, 113, 188, 0.12);
  --secondary: #4296cd;
  --graphite: #0f1824;
  --shadow-lg: 0 32px 80px rgba(7, 28, 55, 0.16);
  --shadow-md: 0 18px 40px rgba(9, 30, 53, 0.12);
  --shadow-sm: 0 10px 24px rgba(9, 30, 53, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --space-1: 8px;
  --space-2: 12px;
  --space-3: 16px;
  --space-4: 20px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 40px;
  --space-8: 56px;
  --space-9: 72px;
  --container: min(1180px, calc(100vw - 40px));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(66, 150, 205, 0.12), transparent 30%),
    linear-gradient(180deg, #f8fbfd 0%, var(--bg) 42%, #eef4f8 100%);
  color: var(--text);
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  line-height: 1.6;
}

body.home {
  background: linear-gradient(180deg, #17344f 0, #214f78 520px, #f8fbfd 520px, #eef4f8 100%);
}

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

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

[hidden] {
  display: none !important;
}

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

.soid-shell {
  position: relative;
  overflow: clip;
}

body.home .soid-shell {
  padding-top: 0;
}

.soid-shell::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 860px;
  background: linear-gradient(135deg, rgba(8, 24, 38, 0.94), rgba(1, 113, 188, 0.78));
  z-index: -3;
}

body.home .soid-shell::before {
  display: none;
}

body:not(.home) .soid-shell::before {
  height: 260px;
}

.soid-shell::after {
  content: "";
  position: absolute;
  top: 240px;
  right: -100px;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(66, 150, 205, 0.28), transparent 68%);
  filter: blur(12px);
  z-index: -2;
}

body.home .soid-shell::after {
  display: none;
}

.soid-container {
  width: var(--container);
  margin: 0 auto;
}

.soid-header {
  position: sticky;
  top: 0;
  z-index: 40;
  padding-top: 18px;
}

.soid-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 22px;
  background: rgba(7, 17, 29, 0.56);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(5, 14, 24, 0.18);
}

.soid-brand img {
  width: 168px;
}

.soid-menu {
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(255, 255, 255, 0.86);
  font-family: "Bahnschrift", "Verdana", sans-serif;
  font-size: 0.96rem;
  letter-spacing: 0.02em;
}

.soid-menu a,
.soid-footer-links a {
  transition: color 180ms ease, transform 180ms ease;
}

.soid-menu a:hover,
.soid-menu a:focus-visible,
.soid-footer-links a:hover,
.soid-footer-links a:focus-visible {
  color: #fff;
  transform: translateY(-1px);
}

.soid-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: "Bahnschrift", "Verdana", sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition:
    transform 200ms ease,
    box-shadow 200ms ease,
    background-color 200ms ease,
    color 200ms ease,
    border-color 200ms ease;
}

.soid-button:hover,
.soid-button:focus-visible {
  transform: translateY(-2px);
}

.soid-button-primary {
  background: linear-gradient(135deg, var(--primary-strong), var(--primary));
  color: #fff;
  box-shadow: 0 12px 28px rgba(1, 113, 188, 0.32);
}

.soid-button-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.soid-hero {
  padding: 72px 0 88px;
  color: #fff;
}

.soid-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 36px;
  align-items: start;
}

.soid-hero-grid-clean {
  min-height: auto;
}

.soid-hero-copy {
  padding-top: 36px;
}

.soid-eyebrow {
  margin: 0 0 12px;
  color: #7fc7f1;
  font-family: "Bahnschrift", "Verdana", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.soid-hero h1,
.soid-section-heading h2,
.soid-panel h2,
.soid-panel h3,
.soid-card h3,
.soid-step h3,
.soid-quick h3 {
  margin: 0;
  font-family: "Bahnschrift", "Verdana", sans-serif;
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.soid-hero h1 {
  max-width: 12ch;
  font-size: clamp(3rem, 5vw, 5rem);
}

.soid-lead,
.soid-section-heading p,
.soid-card p,
.soid-step p,
.soid-panel p,
.soid-quick p,
.soid-footer p {
  color: rgba(255, 255, 255, 0.8);
}

.soid-lead {
  max-width: 64ch;
  margin: 22px 0 0;
  font-size: 1.04rem;
}

.soid-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.soid-points,
.soid-list,
.soid-contact-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.soid-points {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.soid-points li,
.soid-list li,
.soid-contact-list li {
  position: relative;
  padding-left: 28px;
}

.soid-points li::before,
.soid-list li::before,
.soid-contact-list li::before {
  content: "";
  position: absolute;
  top: 0.82em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary-strong);
  box-shadow: 0 0 0 6px rgba(10, 143, 223, 0.14);
  transform: translateY(-50%);
}

.soid-hero-stack {
  display: grid;
  gap: 18px;
}

.soid-search-card,
.soid-quick-panel,
.soid-shop-aside {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(239, 246, 252, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
}

.soid-search-card {
  padding: 28px;
  color: var(--text);
}

.soid-search-top h2 {
  margin: 0;
  color: var(--graphite);
  font-family: "Bahnschrift", "Verdana", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.08;
}

.soid-domain-form {
  margin-top: 22px;
}

.soid-domain-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
}

.soid-domain-row input {
  min-height: 56px;
  padding: 0 18px;
  border: 1px solid rgba(17, 33, 51, 0.12);
  border-radius: 16px;
  background: #fff;
  color: var(--text);
  font-size: 1rem;
}

.soid-domain-help {
  margin: 14px 0 0;
  color: var(--muted);
}

.soid-domain-result {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(1, 113, 188, 0.06);
  color: var(--graphite);
  font-weight: 700;
}

.soid-domain-result[data-state="success"] {
  background: rgba(12, 166, 96, 0.12);
  color: #11613d;
}

.soid-domain-result[data-state="taken"],
.soid-domain-result[data-state="error"] {
  background: rgba(186, 46, 46, 0.1);
  color: #8d1f1f;
}

.soid-domain-result[data-state="loading"] {
  background: rgba(1, 113, 188, 0.1);
  color: var(--primary);
}

.soid-quick-panels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.soid-quick-panel {
  padding: 22px;
  color: var(--text);
}

.soid-quick-panel strong,
.soid-shop-aside strong {
  display: block;
  margin-bottom: 8px;
  color: var(--graphite);
  font-family: "Bahnschrift", "Verdana", sans-serif;
  font-size: 1.08rem;
}

.soid-quick-panel p,
.soid-shop-aside p {
  margin: 0;
  color: var(--muted);
}

.soid-text-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--primary);
  font-family: "Bahnschrift", "Verdana", sans-serif;
  font-weight: 700;
}

.soid-strip {
  margin-top: 0;
  padding-bottom: 18px;
}

.soid-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.soid-strip-grid > div {
  display: grid;
  gap: 6px;
  padding: 22px 24px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 22px;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
}

.soid-strip-number {
  color: var(--primary);
  font-family: "Bahnschrift", "Verdana", sans-serif;
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 1.25;
}

.soid-strip-label {
  color: var(--muted);
}

.soid-section {
  padding: 92px 0;
}

.soid-section-heading {
  max-width: 780px;
  margin-bottom: 38px;
}

.soid-section-heading h2,
.soid-panel h2 {
  color: var(--graphite);
  font-size: clamp(2.15rem, 4vw, 3.45rem);
}

.soid-grid-2,
.soid-grid-3,
.soid-services,
.soid-steps {
  display: grid;
  gap: 20px;
}

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

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

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

.soid-card,
.soid-step,
.soid-panel,
.soid-quick {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.soid-card,
.soid-step,
.soid-panel-light,
.soid-quick {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(248, 251, 253, 0.95));
  border: 1px solid rgba(17, 33, 51, 0.08);
}

.soid-card,
.soid-step,
.soid-panel,
.soid-quick {
  padding: 28px;
}

.soid-card {
  position: relative;
  overflow: hidden;
}

.soid-card::before {
  content: "";
  position: absolute;
  top: -18px;
  right: -16px;
  width: 86px;
  height: 86px;
  background: linear-gradient(135deg, rgba(1, 113, 188, 0.18), rgba(66, 150, 205, 0.02));
  clip-path: polygon(25% 6.7%, 75% 6.7%, 100% 50%, 75% 93.3%, 25% 93.3%, 0 50%);
}

.soid-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 92px;
  height: 92px;
  margin-bottom: 18px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(1, 113, 188, 0.14), rgba(255, 255, 255, 0.94));
}

.soid-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.soid-dark {
  position: relative;
  color: #fff;
}

.soid-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(11, 18, 28, 0.98), rgba(9, 46, 78, 0.94)),
    radial-gradient(circle at top right, rgba(66, 150, 205, 0.18), transparent 28%);
  z-index: -2;
}

.soid-dark::after {
  content: "";
  position: absolute;
  top: 80px;
  right: 8%;
  width: 200px;
  height: 200px;
  opacity: 0.16;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.6), transparent 70%);
  clip-path: polygon(25% 6.7%, 75% 6.7%, 100% 50%, 75% 93.3%, 25% 93.3%, 0 50%);
  z-index: -1;
}

.soid-dark .soid-section-heading h2,
.soid-dark .soid-panel h2,
.soid-dark .soid-panel p,
.soid-dark .soid-card p {
  color: #fff;
}

.soid-dark-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

.soid-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  color: #fff;
  font-family: "Bahnschrift", "Verdana", sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
}

.soid-quick-links {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.soid-quick-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(1, 113, 188, 0.06);
  border: 1px solid rgba(1, 113, 188, 0.08);
  color: var(--text);
  transition: transform 180ms ease, background-color 180ms ease;
}

.soid-quick-link:hover,
.soid-quick-link:focus-visible {
  transform: translateY(-1px);
  background: rgba(1, 113, 188, 0.1);
}

.soid-quick-link strong {
  font-family: "Bahnschrift", "Verdana", sans-serif;
  font-size: 1rem;
}

.soid-quick-link span {
  color: var(--muted);
  font-size: 0.95rem;
}

.soid-panel-dark {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(10, 18, 28, 0.96), rgba(1, 113, 188, 0.88)),
    url("assets/fejlec.png") center / cover no-repeat;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-md);
}

.soid-contact-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.soid-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.soid-footer {
  padding: 26px 0 42px;
}

.soid-footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 28px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(17, 33, 51, 0.08);
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
}

.soid-footer strong {
  display: block;
  margin-bottom: 6px;
  font-family: "Bahnschrift", "Verdana", sans-serif;
}

.soid-footer p {
  margin: 0;
  color: var(--muted);
}

.soid-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
  font-family: "Bahnschrift", "Verdana", sans-serif;
}

.entry-content,
.wp-block-post-content {
  margin: 0;
}

.soid-page {
  padding: 72px 0 92px;
}

.soid-page-shell {
  padding: 34px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(248, 251, 253, 0.95));
  border: 1px solid rgba(17, 33, 51, 0.08);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
}

.soid-shop-shell {
  display: grid;
  gap: 36px;
}

.soid-shop-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 22px;
  align-items: start;
}

.soid-shop-aside {
  padding: 22px;
}

.soid-product-section {
  display: grid;
  gap: 18px;
}

.soid-product-section-head h2 {
  margin: 0;
  color: var(--graphite);
  font-family: "Bahnschrift", "Verdana", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.soid-product-section-head p {
  margin: 8px 0 0;
  color: var(--muted);
}

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

.soid-product-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  background: linear-gradient(180deg, #ffffff, #f8fbfd);
  border: 1px solid rgba(17, 33, 51, 0.08);
  border-radius: 22px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.soid-product-card.is-domain {
  border-color: rgba(1, 113, 188, 0.18);
  box-shadow: 0 14px 34px rgba(1, 113, 188, 0.08);
}

.soid-product-image {
  display: block;
  padding: 18px 18px 0;
}

.soid-product-image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 16px;
}

.soid-product-body {
  padding: 18px 18px 12px;
}

.soid-product-body h3 {
  margin: 0;
  color: var(--graphite);
  font-family: "Bahnschrift", "Verdana", sans-serif;
  font-size: 1.24rem;
  line-height: 1.1;
}

.soid-product-body p {
  margin: 12px 0 0;
  color: var(--muted);
}

.soid-product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 18px 18px;
}

.soid-product-meta strong {
  color: var(--primary);
  font-family: "Bahnschrift", "Verdana", sans-serif;
  font-size: 1.16rem;
}

.soid-page-title {
  margin: 0 0 18px;
  color: var(--graphite);
  font-family: "Bahnschrift", "Verdana", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.06;
}

.soid-page-intro {
  max-width: 68ch;
  margin: 0 0 28px;
  color: var(--muted);
}

.soid-page-content > :first-child {
  margin-top: 0;
}

.soid-page-content > :last-child {
  margin-bottom: 0;
}

.woocommerce .button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  min-height: 48px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary-strong), var(--primary));
  color: #fff;
  box-shadow: 0 12px 28px rgba(1, 113, 188, 0.2);
}

.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt,
.woocommerce #respond input#submit.alt {
  background: linear-gradient(135deg, var(--primary-strong), var(--primary));
  color: #fff;
}

.woocommerce .button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
  background: linear-gradient(135deg, #0899ee, #0171bc);
  color: #fff;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.woocommerce-page input[type="text"],
.woocommerce-page input[type="email"],
.woocommerce-page input[type="password"],
.woocommerce-page input[type="tel"] {
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid rgba(17, 33, 51, 0.12);
  border-radius: 14px;
  background: #fff;
}

.woocommerce table.shop_table,
.woocommerce table.shop_table td,
.woocommerce table.shop_table th {
  border-color: rgba(17, 33, 51, 0.1);
}

.woocommerce table.shop_table,
.woocommerce .woocommerce-error,
.woocommerce .woocommerce-info,
.woocommerce .woocommerce-message,
.woocommerce .cart_totals,
.woocommerce .woocommerce-checkout-review-order,
.woocommerce form.checkout,
.woocommerce form.login,
.woocommerce form.register {
  border-radius: 18px;
}

.woocommerce .woocommerce-error,
.woocommerce .woocommerce-info,
.woocommerce .woocommerce-message {
  background: rgba(1, 113, 188, 0.08);
  border-top-color: var(--primary);
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.woocommerce-account .woocommerce-MyAccount-navigation li {
  margin-bottom: 10px;
}

.woocommerce-account .woocommerce-MyAccount-navigation a {
  display: block;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(1, 113, 188, 0.06);
}

.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
  display: none;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  width: auto;
  margin: 0;
  padding: 22px;
  background: linear-gradient(180deg, #ffffff, #f8fbfd);
  border: 1px solid rgba(17, 33, 51, 0.08);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
}

.woocommerce .quantity .qty {
  min-height: 42px;
}

.woocommerce ul.products li.product a img {
  border-radius: 14px;
}

#uj-ugyfelek,
#meglevo-ugyfelek,
#szolgaltatasok,
#folyamat,
#kapcsolat {
  scroll-margin-top: 108px;
}

body.home .soid-shell::before {
  height: 980px;
}

.soid-container {
  width: min(1200px, calc(100vw - 48px));
}

.soid-header {
  padding-top: 20px;
}

.soid-nav {
  min-height: 82px;
  padding: 14px 24px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 20px;
}

.soid-brand,
.soid-button {
  align-self: center;
}

.soid-menu {
  justify-content: center;
  min-width: 0;
}

.soid-hero {
  padding: 56px 0 72px;
}

.soid-hero-grid {
  gap: 32px;
  align-items: stretch;
}

.soid-hero-copy {
  display: grid;
  align-content: start;
  gap: var(--space-5);
  padding-top: 18px;
}

.soid-hero h1 {
  max-width: 13ch;
  font-size: clamp(3.1rem, 5vw, 4.85rem);
  line-height: 0.98;
}

.soid-lead {
  margin: 0;
  max-width: 60ch;
  font-size: 1.06rem;
  line-height: 1.72;
}

.soid-actions,
.soid-points {
  margin-top: 0;
}

.soid-actions {
  gap: var(--space-3);
}

.soid-points {
  gap: var(--space-3);
}

.soid-hero-stack {
  align-content: start;
  gap: var(--space-4);
}

.soid-search-card {
  padding: 32px;
}

.soid-domain-form {
  display: grid;
  gap: var(--space-4);
  margin-top: var(--space-5);
}

.soid-search-top h2 {
  max-width: 14ch;
}

.soid-domain-row {
  align-items: stretch;
}

.soid-domain-row input,
.soid-domain-row .soid-button {
  width: 100%;
}

.soid-domain-help,
.soid-domain-result {
  margin-top: 0;
}

.soid-domain-offer {
  display: grid;
  gap: var(--space-4);
  padding: 24px;
  border: 1px solid rgba(17, 33, 51, 0.08);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(248, 251, 253, 0.98), rgba(255, 255, 255, 1));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.soid-domain-offer-head,
.soid-domain-offer-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
}

.soid-domain-label {
  display: block;
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.soid-domain-offer-head strong {
  color: var(--graphite);
  font-family: "Bahnschrift", "Verdana", sans-serif;
  font-size: 1.45rem;
  line-height: 1.05;
}

.soid-domain-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(1, 113, 188, 0.1);
  color: var(--primary);
  font-family: "Bahnschrift", "Verdana", sans-serif;
  font-size: 0.94rem;
  font-weight: 700;
}

.soid-domain-badge[data-state="success"] {
  background: rgba(12, 166, 96, 0.12);
  color: #11613d;
}

.soid-domain-badge[data-state="taken"] {
  background: rgba(186, 46, 46, 0.12);
  color: #8d1f1f;
}

.soid-domain-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-3);
}

.soid-domain-metrics article {
  display: grid;
  gap: 8px;
  min-height: 112px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(1, 113, 188, 0.06);
  border: 1px solid rgba(1, 113, 188, 0.1);
}

.soid-domain-metrics span {
  color: var(--muted);
  font-size: 0.94rem;
}

.soid-domain-metrics strong {
  color: var(--graphite);
  font-family: "Bahnschrift", "Verdana", sans-serif;
  font-size: 1.18rem;
  line-height: 1.15;
}

.soid-domain-note {
  margin: 0;
  color: var(--muted);
}

.soid-button.is-disabled,
.soid-button[aria-disabled="true"] {
  pointer-events: none;
  opacity: 0.55;
}

.soid-quick-panels {
  align-items: stretch;
}

.soid-quick-panel {
  display: grid;
  align-content: start;
  gap: var(--space-2);
  min-height: 100%;
  padding: 24px;
}

.soid-strip {
  padding: 0 0 28px;
}

.soid-strip-grid {
  align-items: stretch;
}

.soid-strip-grid > div {
  min-height: 132px;
  align-content: start;
}

.soid-section {
  padding: 88px 0;
}

.soid-card,
.soid-step,
.soid-panel,
.soid-quick {
  display: grid;
  align-content: start;
  gap: var(--space-3);
}

.soid-grid-2 > *,
.soid-grid-3 > * {
  min-height: 100%;
}

.soid-contact-actions {
  gap: var(--space-3);
}

@media (max-width: 1100px) {
  .soid-grid-2,
  .soid-grid-3,
  .soid-product-grid,
  .soid-services,
  .soid-steps,
  .soid-strip-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .soid-nav {
    grid-template-columns: auto 1fr;
  }

  .soid-menu {
    justify-content: flex-end;
  }

  .soid-header .soid-button {
    grid-column: 1 / -1;
    width: auto;
    justify-self: center;
  }

  .soid-hero-grid {
    grid-template-columns: 1fr;
  }

  .soid-shop-head {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .soid-header {
    padding-top: 12px;
  }

  .soid-nav {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 18px 20px;
    border-radius: 28px;
  }

  .soid-menu {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px 18px;
  }

  .soid-hero {
    padding-top: 48px;
    padding-bottom: 72px;
  }

  .soid-grid-2,
  .soid-grid-3,
  .soid-product-grid,
  .soid-services,
  .soid-steps,
  .soid-strip-grid,
  .soid-footer-wrap {
    grid-template-columns: 1fr;
  }

  .soid-hero h1 {
    max-width: none;
  }

  body.home .soid-shell::before {
    height: 1320px;
  }

  .soid-section,
  .soid-footer {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .soid-domain-metrics {
    grid-template-columns: 1fr;
  }

  .soid-domain-offer-head,
  .soid-domain-offer-actions {
    display: grid;
    justify-content: stretch;
  }

  .soid-footer-wrap {
    display: grid;
    border-radius: 26px;
  }
}

@media (max-width: 560px) {
  :root {
    --container: calc(100vw - 28px);
  }

  .soid-brand img {
    width: 144px;
  }

  .soid-hero h1 {
    font-size: clamp(2.45rem, 12vw, 3.35rem);
  }

  .soid-actions,
  .soid-contact-actions,
  .soid-domain-offer-actions {
    display: grid;
  }

  .soid-domain-row,
  .soid-quick-panels,
  .soid-product-meta {
    grid-template-columns: 1fr;
  }

  .soid-product-meta {
    display: grid;
  }

  .woocommerce ul.products {
    grid-template-columns: 1fr;
  }

  .soid-button {
    width: 100%;
  }

  .soid-search-card,
  .soid-domain-offer,
  .soid-quick-panel {
    padding: 22px;
  }

  .soid-card,
  .soid-step,
  .soid-panel,
  .soid-quick,
  .soid-page-shell,
  .soid-strip-grid > div,
  .soid-footer-wrap {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* Hero and header polish */
.soid-header {
  padding-top: 0;
}

.soid-nav {
  min-height: 76px;
  padding: 12px 22px;
  background: rgba(8, 20, 33, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 28px;
  box-shadow: 0 18px 36px rgba(5, 14, 24, 0.16);
}

.soid-brand img {
  width: 156px;
}

.soid-menu {
  gap: 20px;
  font-size: 0.94rem;
}

.soid-header .soid-button {
  min-height: 46px;
  padding-inline: 20px;
}

.soid-hero {
  padding: 22px 0 64px;
  background:
    linear-gradient(115deg, #17344f 0%, #214f78 52%, #3c90d4 100%);
  color: #fff;
}

.soid-hero-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.8fr);
  gap: 34px;
  align-items: start;
}

.soid-hero-copy {
  padding-top: 34px;
  gap: 20px;
}

.soid-hero h1 {
  max-width: 9ch;
  font-size: clamp(2.8rem, 4.3vw, 4.15rem);
  line-height: 1.02;
  text-wrap: balance;
}

.soid-lead {
  max-width: 52ch;
  font-size: 1rem;
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.92);
}

.soid-actions {
  gap: 14px;
}

.soid-points {
  gap: 12px;
}

.soid-points li {
  color: rgba(255, 255, 255, 0.96);
}

.soid-hero-stack {
  gap: 14px;
  max-width: 440px;
  justify-self: end;
}

.soid-search-card {
  padding: 26px;
  border-radius: 24px;
  box-shadow: 0 22px 44px rgba(8, 26, 48, 0.14);
}

.soid-search-top {
  display: grid;
  gap: 12px;
}

.soid-search-top h2 {
  max-width: 12ch;
  font-size: clamp(1.6rem, 2.2vw, 2.05rem);
  line-height: 1.08;
}

.soid-search-intro {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.66;
}

.soid-domain-form {
  gap: 12px;
}

.soid-domain-row {
  grid-template-columns: minmax(0, 1fr) 144px;
}

.soid-search-tip {
  margin: 0;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(1, 113, 188, 0.08);
  border: 1px solid rgba(1, 113, 188, 0.08);
  color: #31475d;
  font-size: 0.93rem;
  line-height: 1.58;
}

.soid-domain-result {
  padding: 13px 15px;
  font-size: 0.94rem;
  font-weight: 600;
}

.soid-domain-offer {
  gap: 16px;
  padding: 18px;
  border-radius: 22px;
}

.soid-domain-offer-head strong {
  font-size: 1.18rem;
}

.soid-domain-metrics article {
  min-height: 88px;
  padding: 14px;
}

.soid-domain-note {
  font-size: 0.95rem;
  line-height: 1.65;
}

.soid-quick-panels {
  gap: 16px;
}

.soid-quick-panel {
  padding: 18px 20px;
  border-radius: 22px;
  box-shadow: var(--shadow-sm);
}

.soid-quick-panel strong {
  margin-bottom: 4px;
  font-size: 1.04rem;
}

.soid-quick-panel p {
  line-height: 1.65;
}

.soid-strip {
  position: relative;
  z-index: 2;
  margin-top: 0;
  padding: 20px 0 24px;
  background: linear-gradient(180deg, #f8fbfd 0%, #f3f7fb 100%);
}

.soid-strip-grid {
  gap: 18px;
}

.soid-strip-grid > div {
  min-height: 126px;
  padding: 22px;
}

.soid-strip-number {
  font-size: 1.52rem;
  line-height: 1.1;
}

.soid-strip-label {
  line-height: 1.5;
}

.soid-section {
  padding: 86px 0;
}

@media (max-width: 1100px) {
  .soid-hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .soid-hero-copy {
    padding-top: 18px;
  }

  .soid-search-card {
    max-width: 760px;
  }

  .soid-hero-stack {
    max-width: 760px;
    justify-self: stretch;
  }
}

@media (max-width: 820px) {
  .soid-nav {
    min-height: auto;
    padding: 16px 18px;
  }

  .soid-hero {
    padding: 18px 0 48px;
  }

  .soid-search-top h2,
  .soid-hero h1 {
    max-width: none;
  }
}

@media (max-width: 560px) {
  body.home {
    background: linear-gradient(180deg, #17344f 0, #214f78 620px, #f8fbfd 620px, #eef4f8 100%);
  }

  .soid-nav {
    border-radius: 24px;
  }

  .soid-hero-copy {
    gap: 18px;
    padding-top: 8px;
  }

  .soid-hero h1 {
    font-size: clamp(2.5rem, 11vw, 3.3rem);
  }

  .soid-search-card,
  .soid-domain-offer,
  .soid-quick-panel,
  .soid-strip-grid > div {
    padding: 20px;
  }

  .soid-domain-row {
    grid-template-columns: 1fr;
  }
}

/* Simplified centered hero */
body.home {
  background: linear-gradient(180deg, #16344f 0, #214e77 560px, #f8fbfd 560px, #eef4f8 100%);
}

.soid-header {
  padding-top: 0;
}

.soid-nav {
  margin-top: 0;
  border-radius: 0 0 28px 28px;
  border-top: 0;
  box-shadow: none;
}

.soid-hero {
  padding: 56px 0 52px;
  background: linear-gradient(115deg, #16344f 0%, #214e77 58%, #3787cb 100%);
}

.soid-hero-simple {
  display: grid;
  justify-items: center;
  gap: 18px;
  text-align: center;
}

.soid-hero-simple .soid-eyebrow {
  margin: 0;
}

.soid-hero-simple h1 {
  max-width: 11ch;
  margin: 0;
  font-family: "Bahnschrift", "Verdana", sans-serif;
  font-size: clamp(3rem, 4.8vw, 4.6rem);
  line-height: 1;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.soid-hero-simple .soid-lead {
  max-width: 42ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.06rem;
  line-height: 1.7;
}

.soid-search-card-centered {
  width: min(820px, 100%);
  margin-top: 10px;
  padding: 14px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 24px 54px rgba(6, 22, 40, 0.18);
  backdrop-filter: blur(10px);
}

.soid-domain-form-centered {
  display: grid;
  gap: 14px;
}

.soid-domain-row-centered {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 170px;
  gap: 12px;
}

.soid-domain-field {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px;
  align-items: stretch;
  min-height: 64px;
  background: #fff;
  border-radius: 20px;
  box-shadow: inset 0 0 0 1px rgba(17, 33, 51, 0.08);
  overflow: hidden;
}

.soid-domain-row-centered input,
.soid-domain-row-centered select {
  border: 0;
  background: transparent;
  color: var(--graphite);
  font-size: 1.02rem;
}

.soid-domain-row-centered input {
  min-height: 64px;
  padding: 0 22px;
}

.soid-domain-row-centered select {
  min-height: 64px;
  padding: 0 18px;
  border-left: 1px solid rgba(17, 33, 51, 0.1);
  font-weight: 700;
  cursor: pointer;
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #4e6075 50%),
    linear-gradient(135deg, #4e6075 50%, transparent 50%);
  background-position:
    calc(100% - 22px) calc(50% - 3px),
    calc(100% - 16px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.soid-domain-row-centered input:focus,
.soid-domain-row-centered select:focus {
  outline: none;
}

.soid-domain-row-centered .soid-button {
  min-height: 64px;
  width: 100%;
}

.soid-domain-result-centered {
  margin: 0;
  padding: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 500;
}

.soid-domain-result-centered[data-state="success"] {
  color: #dbffef;
  background: transparent;
}

.soid-domain-result-centered[data-state="taken"],
.soid-domain-result-centered[data-state="error"],
.soid-domain-result-centered[data-state="loading"] {
  background: transparent;
}

.soid-domain-offer-centered {
  margin-top: 4px;
  text-align: left;
  background: #fff;
  color: var(--text);
  border-radius: 24px;
  box-shadow: 0 18px 36px rgba(9, 30, 53, 0.12);
}

.soid-domain-offer-centered .soid-domain-label,
.soid-domain-offer-centered .soid-domain-metrics span,
.soid-domain-offer-centered .soid-domain-note {
  color: var(--muted);
}

.soid-domain-offer-centered .soid-domain-offer-head strong,
.soid-domain-offer-centered .soid-domain-metrics strong {
  color: var(--graphite);
}

.soid-section:not(.soid-dark) .soid-section-heading p,
.soid-section:not(.soid-dark) .soid-panel p,
.soid-section:not(.soid-dark) .soid-card p,
.soid-section:not(.soid-dark) .soid-quick p,
.soid-section:not(.soid-dark) .soid-list li,
.soid-section:not(.soid-dark) .soid-contact-list li {
  color: var(--muted);
}

.soid-section:not(.soid-dark) .soid-panel h3,
.soid-section:not(.soid-dark) .soid-quick h3,
.soid-section:not(.soid-dark) .soid-section-heading h2,
.soid-section:not(.soid-dark) .soid-panel h2 {
  color: var(--graphite);
}

.soid-section-accent {
  position: relative;
  padding: 72px 0;
  background:
    radial-gradient(circle at top left, rgba(55, 135, 203, 0.12), transparent 26%),
    linear-gradient(180deg, #eaf3fb 0%, #dbeaf7 100%);
}

.soid-section-accent::before {
  content: "";
  position: absolute;
  inset: 24px 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.22));
  z-index: 0;
}

.soid-section-accent .soid-container {
  position: relative;
  z-index: 1;
}

.soid-section-accent .soid-panel-light {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(244, 249, 253, 0.9));
  border: 1px solid rgba(17, 33, 51, 0.08);
  box-shadow: 0 18px 36px rgba(9, 30, 53, 0.08);
}

.soid-section-accent .soid-eyebrow {
  color: #215e8c;
}

.soid-panel-dark .soid-eyebrow {
  color: rgba(219, 238, 252, 0.86);
}

.soid-panel-dark h3,
.soid-panel-dark .soid-contact-list li,
.soid-panel-dark .soid-contact-list a {
  color: #ffffff;
}

.soid-panel-dark .soid-contact-list li {
  line-height: 1.7;
}

.soid-panel-dark .soid-contact-list li::before {
  background: #8ed5ff;
  box-shadow: 0 0 0 6px rgba(142, 213, 255, 0.16);
}

.soid-section:not(.soid-dark) .soid-panel-dark .soid-eyebrow {
  color: rgba(219, 238, 252, 0.86);
}

.soid-section:not(.soid-dark) .soid-panel-dark h3,
.soid-section:not(.soid-dark) .soid-panel-dark p,
.soid-section:not(.soid-dark) .soid-panel-dark .soid-contact-list li,
.soid-section:not(.soid-dark) .soid-panel-dark .soid-contact-list a {
  color: #ffffff;
}

.soid-section:not(.soid-dark) .soid-panel-dark .soid-contact-list li::before {
  background: #8ed5ff;
  box-shadow: 0 0 0 6px rgba(142, 213, 255, 0.16);
}

.soid-hero-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.soid-strip {
  padding: 28px 0 18px;
  background: linear-gradient(180deg, #f8fbfd 0%, #f3f7fb 100%);
}

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

.soid-strip-card,
.soid-strip-grid > div {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 190px;
  padding: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 253, 0.95));
  border: 1px solid rgba(17, 33, 51, 0.08);
  border-radius: 22px;
  box-shadow: var(--shadow-sm);
}

.soid-strip-number {
  color: var(--graphite);
  font-size: 1.22rem;
  font-weight: 700;
}

.soid-strip-label {
  color: var(--muted);
  line-height: 1.65;
}

.soid-strip .soid-text-link {
  margin-top: auto;
}

@media (max-width: 1100px) {
  .soid-strip-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  body.home {
    background: linear-gradient(180deg, #16344f 0, #214e77 720px, #f8fbfd 720px, #eef4f8 100%);
  }

  .soid-nav {
    border-radius: 0 0 24px 24px;
  }

  .soid-hero {
    padding: 44px 0 40px;
  }

  .soid-hero-simple h1 {
    max-width: 12ch;
  }

  .soid-domain-row-centered {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  body.home {
    background: linear-gradient(180deg, #16344f 0, #214e77 760px, #f8fbfd 760px, #eef4f8 100%);
  }

  .soid-hero-simple h1 {
    font-size: clamp(2.35rem, 11vw, 3.4rem);
  }

  .soid-search-card-centered {
    padding: 12px;
  }

  .soid-domain-field {
    grid-template-columns: 1fr 116px;
  }

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

  .soid-strip-card,
  .soid-strip-grid > div {
    min-height: auto;
    padding: 20px;
  }
}
