/* ==========================================================================
   YonksTEAM — Main Compiled Stylesheet
   Pre-compiled, production-ready. No build step required.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS Reset / Normalize
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
  line-height: 1.15;
}

body {
  margin: 0;
  font-family: var(--wp--preset--font-family--body);
  font-size: var(--wp--preset--font-size--medium);
  line-height: 1.7;
  color: var(--wp--preset--color--foreground);
  background-color: var(--wp--preset--color--background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, main, nav, section {
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--wp--preset--font-family--heading);
  line-height: 1.3;
  color: var(--wp--preset--color--primary);
  margin-top: 0;
  margin-bottom: 0.5em;
  overflow-wrap: break-word;
}

h1 {
  font-size: var(--wp--preset--font-size--5xl);
  line-height: 1.15;
}
h2 {
  font-size: var(--wp--preset--font-size--4xl);
  line-height: 1.2;
}
h3 {
  font-size: var(--wp--preset--font-size--3xl);
  line-height: 1.25;
}
h4 {
  font-size: var(--wp--preset--font-size--2xl);
  line-height: 1.3;
}
h5 {
  font-size: var(--wp--preset--font-size--xl);
  line-height: 1.35;
}
h6 {
  font-size: var(--wp--preset--font-size--large);
  line-height: 1.4;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol, ul {
  margin-top: 0;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

li {
  margin-bottom: 0.25rem;
}

a {
  color: var(--wp--preset--color--secondary);
  text-decoration: underline;
  transition: color 0.15s ease;
}
a:hover {
  color: var(--wp--preset--color--accent);
}
a:focus-visible {
  outline: 2px solid var(--wp--preset--color--secondary);
  outline-offset: 2px;
  border-radius: 2px;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

img {
  height: auto;
  vertical-align: middle;
  font-style: italic;
  background-repeat: no-repeat;
  background-size: cover;
  shape-margin: 0.75rem;
}

button,
input,
select,
textarea {
  font: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
  appearance: button;
  cursor: pointer;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
  resize: vertical;
}

[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

[type="search"] {
  -webkit-appearance: textfield;
  appearance: textfield;
  outline-offset: -2px;
}

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

details {
  display: block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

[hidden] {
  display: none !important;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
  border: 0;
  border-top: 1px solid var(--wp--preset--color--surface);
  margin: 2rem 0;
}

pre {
  font-family: monospace, monospace;
  font-size: 1em;
  white-space: pre-wrap;
  overflow-wrap: break-word;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  margin-bottom: 1rem;
}

th,
td {
  padding: 0.5rem;
  border: 1px solid var(--wp--preset--color--surface);
  text-align: left;
}

th {
  font-weight: 600;
  background-color: var(--wp--preset--color--surface);
}

blockquote {
  border-left: 4px solid var(--wp--preset--color--secondary);
  padding-left: 1.25rem;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--wp--preset--color--muted);
}

/* --------------------------------------------------------------------------
   2. Tailwind-Style Utility Classes (Design Tokens)
   -------------------------------------------------------------------------- */

/* ---- Color Utilities ---- */
.color-primary           { color: var(--wp--preset--color--primary); }
.color-secondary         { color: var(--wp--preset--color--secondary); }
.color-accent            { color: var(--wp--preset--color--accent); }
.color-background        { color: var(--wp--preset--color--background); }
.color-surface           { color: var(--wp--preset--color--surface); }
.color-foreground        { color: var(--wp--preset--color--foreground); }
.color-muted             { color: var(--wp--preset--color--muted); }
.color-white             { color: var(--wp--preset--color--white); }

.bg-primary              { background-color: var(--wp--preset--color--primary); }
.bg-secondary            { background-color: var(--wp--preset--color--secondary); }
.bg-accent               { background-color: var(--wp--preset--color--accent); }
.bg-background           { background-color: var(--wp--preset--color--background); }
.bg-surface              { background-color: var(--wp--preset--color--surface); }
.bg-foreground           { background-color: var(--wp--preset--color--foreground); }
.bg-muted                { background-color: var(--wp--preset--color--muted); }
.bg-white                { background-color: var(--wp--preset--color--white); }

.border-primary          { border-color: var(--wp--preset--color--primary); }
.border-secondary        { border-color: var(--wp--preset--color--secondary); }
.border-accent           { border-color: var(--wp--preset--color--accent); }
.border-surface          { border-color: var(--wp--preset--color--surface); }
.border-foreground       { border-color: var(--wp--preset--color--foreground); }

/* ---- Typography Utilities ---- */
.font-heading {
  font-family: var(--wp--preset--font-family--heading);
}
.font-body {
  font-family: var(--wp--preset--font-family--body);
}

.text-display {
  font-size: var(--wp--preset--font-size--5xl);
  line-height: 1.1;
}
.text-hero {
  font-size: var(--wp--preset--font-size--4xl);
  line-height: 1.15;
}
.text-h1 {
  font-size: var(--wp--preset--font-size--3xl);
  line-height: 1.2;
}
.text-h2 {
  font-size: var(--wp--preset--font-size--2xl);
  line-height: 1.25;
}
.text-h3 {
  font-size: var(--wp--preset--font-size--xl);
  line-height: 1.3;
}
.text-xl {
  font-size: var(--wp--preset--font-size--xl);
  line-height: 1.5;
}
.text-large {
  font-size: var(--wp--preset--font-size--large);
  line-height: 1.6;
}
.text-medium {
  font-size: var(--wp--preset--font-size--medium);
  line-height: 1.7;
}
.text-small {
  font-size: var(--wp--preset--font-size--small);
  line-height: 1.5;
}

.font-normal    { font-weight: 400; }
.font-medium    { font-weight: 500; }
.font-semibold  { font-weight: 600; }
.font-bold      { font-weight: 700; }

.text-left      { text-align: left; }
.text-center    { text-align: center; }
.text-right     { text-align: right; }

.leading-none   { line-height: 1; }
.leading-tight  { line-height: 1.25; }
.leading-normal { line-height: 1.5; }
.leading-relaxed { line-height: 1.7; }
.leading-loose  { line-height: 2; }

.tracking-tight  { letter-spacing: -0.025em; }
.tracking-normal { letter-spacing: 0; }
.tracking-wide   { letter-spacing: 0.025em; }

.italic          { font-style: italic; }
.not-italic      { font-style: normal; }
.uppercase       { text-transform: uppercase; }
.capitalize      { text-transform: capitalize; }
.no-underline    { text-decoration: none; }
.underline       { text-decoration: underline; }

.list-none      { list-style: none; padding-left: 0; }
.list-disc      { list-style: disc; }
.list-decimal   { list-style: decimal; }

/* ---- Spacing Utilities ---- */
.m-0    { margin: 0; }
.mx-0   { margin-left: 0; margin-right: 0; }
.my-0   { margin-top: 0; margin-bottom: 0; }
.mx-auto { margin-left: auto; margin-right: auto; }

.mt-0   { margin-top: 0; }
.mt-1   { margin-top: 0.25rem; }
.mt-2   { margin-top: 0.5rem; }
.mt-3   { margin-top: 0.75rem; }
.mt-4   { margin-top: 1rem; }
.mt-6   { margin-top: 1.5rem; }
.mt-8   { margin-top: 2rem; }
.mt-12  { margin-top: 3rem; }
.mt-16  { margin-top: 4rem; }

.mb-0   { margin-bottom: 0; }
.mb-1   { margin-bottom: 0.25rem; }
.mb-2   { margin-bottom: 0.5rem; }
.mb-3   { margin-bottom: 0.75rem; }
.mb-4   { margin-bottom: 1rem; }
.mb-6   { margin-bottom: 1.5rem; }
.mb-8   { margin-bottom: 2rem; }
.mb-12  { margin-bottom: 3rem; }
.mb-16  { margin-bottom: 4rem; }

.p-0    { padding: 0; }
.p-4    { padding: 1rem; }
.p-6    { padding: 1.5rem; }
.p-8    { padding: 2rem; }

.px-0   { padding-left: 0; padding-right: 0; }
.px-4   { padding-left: 1rem; padding-right: 1rem; }
.px-6   { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8   { padding-left: 2rem; }

.py-0   { padding-top: 0; padding-bottom: 0; }
.py-2   { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-4   { padding-top: 1rem; padding-bottom: 1rem; }
.py-6   { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-8   { padding-top: 2rem; padding-bottom: 2rem; }
.py-12  { padding-top: 3rem; padding-bottom: 3rem; }
.py-16  { padding-top: 4rem; padding-bottom: 4rem; }

/* ---- Flexbox & Grid Utilities ---- */
.flex            { display: flex; }
.inline-flex     { display: inline-flex; }
.flex-row        { flex-direction: row; }
.flex-col        { flex-direction: column; }
.flex-wrap       { flex-wrap: wrap; }
.flex-nowrap     { flex-wrap: nowrap; }
.items-start     { align-items: flex-start; }
.items-center    { align-items: center; }
.items-end       { align-items: flex-end; }
.justify-start   { justify-content: flex-start; }
.justify-center  { justify-content: center; }
.justify-end     { justify-content: flex-end; }
.justify-between { justify-content: space-between; }
.gap-0           { gap: 0; }
.gap-1           { gap: 0.25rem; }
.gap-2           { gap: 0.5rem; }
.gap-3           { gap: 0.75rem; }
.gap-4           { gap: 1rem; }
.gap-6           { gap: 1.5rem; }
.gap-8           { gap: 2rem; }
.gap-12          { gap: 3rem; }

.grid            { display: grid; }
.grid-cols-1     { grid-template-columns: repeat(1, 1fr); }
.grid-cols-2     { grid-template-columns: repeat(2, 1fr); }
.grid-cols-3     { grid-template-columns: repeat(3, 1fr); }
.grid-cols-4     { grid-template-columns: repeat(4, 1fr); }

/* ---- Display & Layout Utilities ---- */
.block           { display: block; }
.inline-block    { display: inline-block; }
.inline          { display: inline; }
.hidden          { display: none; }
.overflow-hidden { overflow: hidden; }
.overflow-auto   { overflow: auto; }

.relative        { position: relative; }
.absolute        { position: absolute; }
.fixed           { position: fixed; }
.sticky          { position: sticky; }

.top-0           { top: 0; }
.right-0         { right: 0; }
.bottom-0        { bottom: 0; }
.left-0          { left: 0; }

.w-full          { width: 100%; }
.w-auto          { width: auto; }
.h-full          { height: 100%; }
.h-auto          { height: auto; }

.max-w-full      { max-width: 100%; }
.max-w-none      { max-width: none; }

.object-cover    { object-fit: cover; }
.object-contain  { object-fit: contain; }

/* ---- Border & Radius Utilities ---- */
.rounded-none    { border-radius: 0; }
.rounded-sm      { border-radius: 0.125rem; }
.rounded         { border-radius: 0.25rem; }
.rounded-md      { border-radius: 0.375rem; }
.rounded-lg      { border-radius: 0.5rem; }
.rounded-full    { border-radius: 9999px; }

.border          { border: 1px solid var(--wp--preset--color--surface); }
.border-0        { border: 0; }
.border-2        { border-width: 2px; }
.border-t        { border-top: 1px solid var(--wp--preset--color--surface); }
.border-b        { border-bottom: 1px solid var(--wp--preset--color--surface); }

/* ---- Shadow Utilities ---- */
.shadow-none     { box-shadow: none; }
.shadow-sm       { box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05); }
.shadow          { box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06); }
.shadow-md       { box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.06); }
.shadow-lg       { box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05); }
.shadow-xl       { box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1), 0 10px 10px rgba(0, 0, 0, 0.04); }

/* ---- Opacity & Transition Utilities ---- */
.opacity-0       { opacity: 0; }
.opacity-50      { opacity: 0.5; }
.opacity-75      { opacity: 0.75; }
.opacity-100     { opacity: 1; }

.transition      { transition: all 0.2s ease; }
.transition-colors { transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease; }
.transition-transform { transition: transform 0.2s ease; }

.duration-150    { transition-duration: 150ms; }
.duration-200    { transition-duration: 200ms; }
.duration-300    { transition-duration: 300ms; }

.ease-in         { transition-timing-function: ease-in; }
.ease-out        { transition-timing-function: ease-out; }
.ease-in-out     { transition-timing-function: ease-in-out; }

/* ---- Z-Index Utilities ---- */
.z-0             { z-index: 0; }
.z-10            { z-index: 10; }
.z-20            { z-index: 20; }
.z-30            { z-index: 30; }
.z-40            { z-index: 40; }
.z-50            { z-index: 50; }

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

.antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.alignfull {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  max-width: 100vw;
  width: 100vw;
}

.alignwide {
  margin-left: calc(50% - min(50vw, var(--wp--style--global--wide-size, 1140px) / 2));
  margin-right: calc(50% - min(50vw, var(--wp--style--global--wide-size, 1140px) / 2));
  max-width: var(--wp--style--global--wide-size, 1140px);
  width: auto;
}

/* --------------------------------------------------------------------------
   3. Component Classes
   -------------------------------------------------------------------------- */

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 0.25rem;
  font-family: var(--wp--preset--font-family--body);
  font-size: var(--wp--preset--font-size--medium);
  font-weight: 600;
  line-height: 1.25;
  text-decoration: none;
  text-align: center;
  transition: all 0.2s ease;
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
  user-select: none;
  -webkit-appearance: none;
  appearance: none;
}

.btn:focus-visible {
  outline: 2px solid var(--wp--preset--color--secondary);
  outline-offset: 2px;
}

.btn--primary {
  background-color: var(--wp--preset--color--secondary);
  color: var(--wp--preset--color--white);
  border-color: var(--wp--preset--color--secondary);
}

.btn--primary:hover {
  background-color: var(--wp--preset--color--accent);
  border-color: var(--wp--preset--color--accent);
  color: var(--wp--preset--color--white);
}

.btn--secondary {
  background-color: transparent;
  color: var(--wp--preset--color--primary);
  border-color: var(--wp--preset--color--primary);
}

.btn--secondary:hover {
  background-color: var(--wp--preset--color--primary);
  color: var(--wp--preset--color--white);
  border-color: var(--wp--preset--color--primary);
}

.btn--white {
  background-color: var(--wp--preset--color--white);
  color: var(--wp--preset--color--primary);
  border-color: var(--wp--preset--color--white);
}

.btn--white:hover {
  background-color: transparent;
  color: var(--wp--preset--color--white);
  border-color: var(--wp--preset--color--white);
}

.btn--outline-white {
  background-color: transparent;
  color: var(--wp--preset--color--white);
  border-color: var(--wp--preset--color--white);
}

.btn--outline-white:hover {
  background-color: var(--wp--preset--color--white);
  color: var(--wp--preset--color--primary);
  border-color: var(--wp--preset--color--white);
}

.btn--sm {
  padding: 0.5rem 1.25rem;
  font-size: var(--wp--preset--font-size--small);
}

.btn--lg {
  padding: 1rem 2.5rem;
  font-size: var(--wp--preset--font-size--large);
}

.btn--arrow::after {
  content: "→";
  display: inline-block;
  transition: transform 0.2s ease;
  line-height: 1;
}

.btn--arrow:hover::after {
  transform: translateX(4px);
}

/* ---- Section Spacing ---- */
.section-padding {
  padding-top: 6rem;
  padding-bottom: 6rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.section-padding--sm {
  padding-top: 3rem;
  padding-bottom: 3rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.section-padding--lg {
  padding-top: 8rem;
  padding-bottom: 8rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.container-content {
  max-width: var(--wp--style--global--content-size, 720px);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.container-wide {
  max-width: var(--wp--style--global--wide-size, 1140px);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* --------------------------------------------------------------------------
   4. Hero Block Styles
   -------------------------------------------------------------------------- */
.hero-block {
  position: relative;
  padding: 6rem 1.5rem;
  overflow: hidden;
}

.hero-block--variant-default {
  background: linear-gradient(135deg, var(--wp--preset--color--background) 0%, var(--wp--preset--color--surface) 100%);
}

.hero-block--variant-advisor {
  background: linear-gradient(135deg, var(--wp--preset--color--primary) 0%, #123a63 100%);
}
.hero-block--variant-advisor .hero-block__headline {
  color: var(--wp--preset--color--white);
}
.hero-block--variant-advisor .hero-block__subheadline {
  color: var(--wp--preset--color--secondary);
}
.hero-block--variant-advisor .hero-block__body {
  color: rgba(255, 255, 255, 0.85);
}

.hero-block--variant-exit {
  background: linear-gradient(135deg, var(--wp--preset--color--primary) 0%, #123a63 100%);
}
.hero-block--variant-exit .hero-block__headline {
  color: var(--wp--preset--color--white);
}
.hero-block--variant-exit .hero-block__subheadline {
  color: var(--wp--preset--color--secondary);
}
.hero-block--variant-exit .hero-block__body {
  color: rgba(255, 255, 255, 0.85);
}

.hero-block--variant-about {
  background: linear-gradient(135deg, var(--wp--preset--color--background) 0%, var(--wp--preset--color--surface) 100%);
}

.hero-block--variant-newsletter {
  background: linear-gradient(135deg, var(--wp--preset--color--primary) 0%, #123a63 100%);
  text-align: center;
}
.hero-block--variant-newsletter .hero-block__headline {
  color: var(--wp--preset--color--white);
}
.hero-block--variant-newsletter .hero-block__subheadline {
  color: var(--wp--preset--color--secondary);
}
.hero-block--variant-newsletter .hero-block__body {
  color: rgba(255, 255, 255, 0.85);
}
.hero-block--variant-newsletter .hero-block__inner {
  grid-template-columns: 1fr;
  max-width: var(--wp--style--global--content-size, 720px);
  text-align: center;
}
.hero-block--variant-newsletter .hero-block__actions {
  justify-content: center;
}

.hero-block--variant-contact {
  background: linear-gradient(135deg, var(--wp--preset--color--background) 0%, var(--wp--preset--color--surface) 100%);
}

.hero-block__inner {
  max-width: var(--wp--style--global--wide-size, 1140px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-block__content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hero-block__headline {
  font-family: var(--wp--preset--font-family--heading);
  font-size: var(--wp--preset--font-size--5xl);
  line-height: 1.1;
  color: var(--wp--preset--color--primary);
  margin-bottom: 1rem;
  font-weight: 700;
  max-width: 14ch;
}

.hero-block__subheadline {
  font-family: var(--wp--preset--font-family--body);
  font-size: var(--wp--preset--font-size--xl);
  line-height: 1.4;
  color: var(--wp--preset--color--secondary);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.hero-block__body {
  font-family: var(--wp--preset--font-family--body);
  font-size: var(--wp--preset--font-size--large);
  line-height: 1.7;
  color: var(--wp--preset--color--foreground);
  margin-bottom: 2rem;
  max-width: 50ch;
}
.hero-block__body p {
  margin-bottom: 0;
}

.hero-block__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.hero-block__media {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-block__image {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* --------------------------------------------------------------------------
   5. Site Header
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: var(--wp--preset--color--background);
  border-bottom: 1px solid var(--wp--preset--color--surface);
  padding: 0.75rem 1.5rem;
}

.site-header .wp-block-group {
  max-width: var(--wp--style--global--wide-size, 1140px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-header .wp-block-site-logo {
  flex-shrink: 0;
}

.site-header .wp-block-site-logo img {
  width: auto;
  height: 40px;
}

/* ---- Navigation (Desktop) ---- */
.site-header .wp-block-navigation {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.site-header .wp-block-navigation__container {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-header .wp-block-navigation-item {
  margin: 0;
}

.site-header .wp-block-navigation-item__content {
  display: block;
  padding: 0.5rem 1rem;
  font-family: var(--wp--preset--font-family--body);
  font-size: var(--wp--preset--font-size--small);
  font-weight: 500;
  color: var(--wp--preset--color--foreground);
  text-decoration: none;
  border-radius: 0.25rem;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.site-header .wp-block-navigation-item__content:hover {
  background-color: var(--wp--preset--color--surface);
  color: var(--wp--preset--color--primary);
}

.site-header .wp-block-navigation-item.current-menu-item .wp-block-navigation-item__content {
  color: var(--wp--preset--color--secondary);
  font-weight: 600;
}

/* ---- Mobile Nav Toggle ---- */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  color: var(--wp--preset--color--primary);
  z-index: 51;
}

.nav-toggle__icon {
  display: block;
  width: 24px;
  height: 2px;
  background-color: currentColor;
  position: relative;
  transition: background-color 0.2s ease;
}

.nav-toggle__icon::before,
.nav-toggle__icon::after {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  background-color: currentColor;
  position: absolute;
  left: 0;
  transition: transform 0.2s ease;
}

.nav-toggle__icon::before {
  top: -7px;
}

.nav-toggle__icon::after {
  top: 7px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__icon {
  background-color: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__icon::before {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__icon::after {
  transform: translateY(-7px) rotate(-45deg);
}

/* --------------------------------------------------------------------------
   6. Site Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background-color: var(--wp--preset--color--background);
  padding: 3rem 1.5rem 1.5rem;
  border-top: 1px solid var(--wp--preset--color--surface);
}

.site-footer .wp-block-group {
  max-width: var(--wp--style--global--wide-size, 1140px);
  margin: 0 auto;
}

.site-footer .wp-block-group:first-of-type {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.site-footer .wp-block-navigation {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.site-footer .wp-block-navigation__container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer .wp-block-navigation-item {
  margin: 0;
}

.site-footer .wp-block-navigation-item__content {
  display: block;
  padding: 0.375rem 0.75rem;
  font-family: var(--wp--preset--font-family--body);
  font-size: var(--wp--preset--font-size--small);
  color: var(--wp--preset--color--muted);
  text-decoration: none;
  transition: color 0.15s ease;
}

.site-footer .wp-block-navigation-item__content:hover {
  color: var(--wp--preset--color--secondary);
}

.site-footer .wp-block-separator {
  max-width: var(--wp--style--global--wide-size, 1140px);
  margin: 0 auto 2rem;
}

.site-footer p {
  font-size: var(--wp--preset--font-size--small);
  color: var(--wp--preset--color--muted);
  margin: 0;
}

/* --------------------------------------------------------------------------
   7. CTA Section Block
   -------------------------------------------------------------------------- */
.cta-section {
  padding: 6rem 1.5rem;
  background: linear-gradient(135deg, var(--wp--preset--color--primary) 0%, #0e2f52 100%);
  text-align: center;
}

.cta-section__inner {
  max-width: var(--wp--style--global--content-size, 720px);
  margin: 0 auto;
}

.cta-section__headline {
  font-family: var(--wp--preset--font-family--heading);
  font-size: var(--wp--preset--font-size--4xl);
  line-height: 1.2;
  color: var(--wp--preset--color--white);
  margin-bottom: 1rem;
}

.cta-section__body {
  font-family: var(--wp--preset--font-family--body);
  font-size: var(--wp--preset--font-size--large);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
  max-width: 50ch;
  margin-left: auto;
  margin-right: auto;
}

.cta-section__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

/* --------------------------------------------------------------------------
   8. Newsletter Signup
   -------------------------------------------------------------------------- */
.newsletter-signup {
  padding: 4rem 1.5rem;
  background-color: var(--wp--preset--color--surface);
}

.newsletter-signup__inner {
  max-width: var(--wp--style--global--content-size, 720px);
  margin: 0 auto;
  text-align: center;
}

.newsletter-signup__headline {
  font-family: var(--wp--preset--font-family--heading);
  font-size: var(--wp--preset--font-size--2xl);
  color: var(--wp--preset--color--primary);
  margin-bottom: 0.75rem;
}

.newsletter-signup__body {
  font-size: var(--wp--preset--font-size--medium);
  color: var(--wp--preset--color--muted);
  margin-bottom: 2rem;
  max-width: 45ch;
  margin-left: auto;
  margin-right: auto;
}

/* Generic form styling inside newsletter (fallback for any form markup) */
.newsletter-signup form {
  max-width: 480px;
  margin: 0 auto;
}

.newsletter-signup form > * {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.newsletter-signup input[type="email"] {
  flex: 1 1 240px;
  padding: 0.75rem 1rem;
  border: 2px solid var(--wp--preset--color--surface);
  border-radius: 0.25rem;
  font-family: var(--wp--preset--font-family--body);
  font-size: var(--wp--preset--font-size--medium);
  background-color: var(--wp--preset--color--white);
  color: var(--wp--preset--color--foreground);
  transition: border-color 0.2s ease;
}

.newsletter-signup input[type="email"]:focus {
  outline: none;
  border-color: var(--wp--preset--color--secondary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.newsletter-signup input[type="email"]::placeholder {
  color: var(--wp--preset--color--muted);
}

.newsletter-signup input[type="submit"],
.newsletter-signup button[type="submit"] {
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--wp--preset--color--secondary);
  border-radius: 0.25rem;
  background-color: var(--wp--preset--color--secondary);
  color: var(--wp--preset--color--white);
  font-family: var(--wp--preset--font-family--body);
  font-size: var(--wp--preset--font-size--medium);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.newsletter-signup input[type="submit"]:hover,
.newsletter-signup button[type="submit"]:hover {
  background-color: var(--wp--preset--color--accent);
  border-color: var(--wp--preset--color--accent);
}

/* --------------------------------------------------------------------------
   8a. Contact Section (Fluent Forms)
   -------------------------------------------------------------------------- */
.contact-section {
  padding: 4rem 0;
}

.contact-section__intro {
  color: var(--wp--preset--color--muted);
  max-width: 55ch;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3rem;
  font-size: var(--wp--preset--font-size--large);
  line-height: 1.7;
}

/* ---- Fluent Forms (contact + newsletter) ---- */
.contact-section .ff_form,
.newsletter-signup .ff_form {
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-signup .ff_form {
  max-width: 480px;
}

.contact-section .ff-el-input--label label,
.newsletter-signup .ff-el-input--label label {
  font-family: var(--wp--preset--font-family--body);
  font-size: var(--wp--preset--font-size--medium);
  font-weight: 500;
  color: var(--wp--preset--color--primary);
}

.contact-section .ff-el-form-control,
.newsletter-signup .ff-el-form-control {
  padding: 0.875rem 1rem;
  border: 2px solid var(--wp--preset--color--surface);
  border-radius: 0.375rem;
  font-family: var(--wp--preset--font-family--body);
  font-size: var(--wp--preset--font-size--medium);
  background-color: var(--wp--preset--color--white);
  color: var(--wp--preset--color--foreground);
  transition: border-color 0.2s ease;
  line-height: 1.5;
}

.contact-section .ff-el-form-control:focus,
.newsletter-signup .ff-el-form-control:focus {
  outline: none;
  border-color: var(--wp--preset--color--secondary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.contact-section .ff-el-form-control::placeholder,
.newsletter-signup .ff-el-form-control::placeholder {
  color: var(--wp--preset--color--muted);
}

.contact-section .ff-btn-submit,
.newsletter-signup .ff-btn-submit {
  padding: 0.875rem 2rem;
  border: 2px solid var(--wp--preset--color--secondary) !important;
  border-radius: 0.375rem;
  background-color: var(--wp--preset--color--secondary) !important;
  color: var(--wp--preset--color--white) !important;
  font-family: var(--wp--preset--font-family--body);
  font-size: var(--wp--preset--font-size--medium);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.contact-section .ff-btn-submit:hover,
.newsletter-signup .ff-btn-submit:hover {
  background-color: #1d4ed8 !important;
  border-color: #1d4ed8 !important;
  transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   8b. Inner Circle / Agent Operator Page Sections
   -------------------------------------------------------------------------- */

/* ---- Feature Grid (2x2) ---- */
.features-section {
  padding: 4rem 0;
}

.features-section__title {
  margin-bottom: 3rem;
}

.features-section .wp-block-columns {
  margin-bottom: 0;
}

.feature {
  background: var(--wp--preset--color--white);
  border: 1px solid var(--wp--preset--color--surface);
  border-radius: 0.75rem;
  padding: 1.5rem;
  height: 100%;
}

.feature__title {
  font-size: var(--wp--preset--font-size--xl);
  margin-bottom: 0.5rem;
}

.feature__description {
  color: var(--wp--preset--color--muted);
  font-size: var(--wp--preset--font-size--medium);
  line-height: 1.7;
  margin-bottom: 0;
}

/* ---- Steps (Agent Operator) ---- */
.steps-section {
  padding: 4rem 0;
}

.steps-section__title {
  margin-bottom: 3rem;
}

.step {
  background: var(--wp--preset--color--white);
  border: 1px solid var(--wp--preset--color--surface);
  border-radius: 0.75rem;
  padding: 2rem;
  margin-bottom: 1.5rem;
}

.step:last-child {
  margin-bottom: 0;
}

.step__number {
  font-family: var(--wp--preset--font-family--heading);
  font-size: var(--wp--preset--font-size--2xl);
  font-weight: 700;
  color: var(--wp--preset--color--secondary);
  margin-bottom: 0.5rem;
}

.step__title {
  font-size: var(--wp--preset--font-size--xl);
  margin-bottom: 0.5rem;
}

.step__description {
  color: var(--wp--preset--color--muted);
  font-size: var(--wp--preset--font-size--medium);
  line-height: 1.7;
  margin-bottom: 0;
}

/* ---- Pricing Card ---- */
.pricing-section {
  padding: 4rem 0;
}

.pricing-section__title {
  margin-bottom: 0.5rem;
}

.pricing-section__intro {
  color: var(--wp--preset--color--muted);
  max-width: 45ch;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
}

.pricing-card {
  max-width: 480px;
  margin: 0 auto;
  background: var(--wp--preset--color--white);
  border: 2px solid var(--wp--preset--color--secondary);
  border-radius: 0.75rem;
  padding: 2.5rem;
  text-align: center;
}

.pricing-card__title {
  font-size: var(--wp--preset--font-size--large);
  color: var(--wp--preset--color--secondary);
  margin-bottom: 1rem;
}

.pricing-card__price {
  font-family: var(--wp--preset--font-family--heading);
  font-size: var(--wp--preset--font-size--4xl);
  font-weight: 700;
  color: var(--wp--preset--color--primary);
  margin-bottom: 1.5rem;
}

.pricing-card__benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  text-align: left;
}

.pricing-card__benefits li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
  line-height: 1.7;
  color: var(--wp--preset--color--foreground);
}

.pricing-card__benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.1em;
  color: var(--wp--preset--color--secondary);
  font-weight: 700;
}

.pricing-card .wp-block-buttons {
  justify-content: center;
}

/* --------------------------------------------------------------------------
   9. Core Block Overrides
   -------------------------------------------------------------------------- */

/* ---- Core Paragraph ---- */
.wp-block-paragraph,
.wp-block-paragraph p,
p.has-background {
  line-height: 1.7;
}

p.has-large-font-size {
  line-height: 1.6;
}

p.has-small-font-size {
  line-height: 1.5;
}

/* ---- Core Headings ---- */
.wp-block-heading h1,
.wp-block-heading h2,
.wp-block-heading h3,
.wp-block-heading h4,
.wp-block-heading h5,
.wp-block-heading h6 {
  font-family: var(--wp--preset--font-family--heading);
  color: var(--wp--preset--color--primary);
}

/* ---- Core Buttons ---- */
.wp-block-button .wp-block-button__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 0.25rem;
  font-family: var(--wp--preset--font-family--body);
  font-size: var(--wp--preset--font-size--medium);
  font-weight: 600;
  line-height: 1.25;
  text-decoration: none;
  text-align: center;
  transition: all 0.2s ease;
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

.wp-block-button.is-style-outline .wp-block-button__link {
  background-color: transparent;
  border-color: var(--wp--preset--color--primary);
  color: var(--wp--preset--color--primary);
}

.wp-block-button.is-style-outline .wp-block-button__link:hover {
  background-color: var(--wp--preset--color--primary);
  color: var(--wp--preset--color--white);
}

/* ---- Core Columns ---- */
.wp-block-columns {
  gap: 2rem;
  margin-bottom: 0;
}

.wp-block-column {
  flex: 1;
  min-width: 0;
}

/* ---- Core Cover ---- */
.wp-block-cover {
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---- Core Group ---- */
.wp-block-group.is-layout-constrained > * {
  max-width: var(--wp--style--global--content-size, 720px);
  margin-left: auto;
  margin-right: auto;
}

.wp-block-group.is-layout-constrained > .alignwide {
  max-width: var(--wp--style--global--wide-size, 1140px);
}

.wp-block-group.is-layout-constrained > .alignfull {
  max-width: none;
}

/* ---- Core Image ---- */
.wp-block-image img {
  border-radius: 0.5rem;
}

.wp-block-image.alignfull img {
  border-radius: 0;
}

/* ---- Core Separator ---- */
.wp-block-separator {
  border: none;
  border-top: 1px solid var(--wp--preset--color--surface);
  margin: 2rem 0;
}

.wp-block-separator.is-style-wide {
  max-width: none;
}

.wp-block-separator.is-style-dots {
  border: none;
  text-align: center;
  line-height: 1;
  height: auto;
}
.wp-block-separator.is-style-dots::before {
  content: "···";
  color: var(--wp--preset--color--muted);
  letter-spacing: 2em;
  padding-left: 2em;
  font-size: 1.5rem;
}

/* ---- Core Pullquote / Quote ---- */
.wp-block-pullquote {
  border-top: 4px solid var(--wp--preset--color--secondary);
  border-bottom: 4px solid var(--wp--preset--color--secondary);
  padding: 2rem 1.5rem;
  margin: 2rem 0;
  text-align: center;
}

.wp-block-pullquote blockquote {
  border: none;
  padding: 0;
  margin: 0;
}

.wp-block-pullquote p {
  font-family: var(--wp--preset--font-family--heading);
  font-size: var(--wp--preset--font-size--2xl);
  line-height: 1.3;
  color: var(--wp--preset--color--primary);
  font-style: italic;
}

/* ---- Core List ---- */
.wp-block-list {
  padding-left: 1.5rem;
}

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

/* ---- Core Media & Text ---- */
.wp-block-media-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

/* --------------------------------------------------------------------------
   10. Accessibility
   -------------------------------------------------------------------------- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  z-index: 100;
  padding: 0.5rem 1rem;
  background-color: var(--wp--preset--color--primary);
  color: var(--wp--preset--color--white);
  text-decoration: none;
  font-family: var(--wp--preset--font-family--body);
  font-size: var(--wp--preset--font-size--small);
}

.skip-link:focus {
  top: 0;
  outline: 2px solid var(--wp--preset--color--secondary);
  outline-offset: 2px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* --------------------------------------------------------------------------
   11. Responsive Breakpoints (Max 768px)
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {

  /* ---- Typography ---- */
  h1 {
    font-size: var(--wp--preset--font-size--3xl);
  }
  h2 {
    font-size: var(--wp--preset--font-size--2xl);
  }
  h3 {
    font-size: var(--wp--preset--font-size--xl);
  }
  h4 {
    font-size: var(--wp--preset--font-size--large);
  }

  .text-display {
    font-size: var(--wp--preset--font-size--3xl);
  }
  .text-hero {
    font-size: var(--wp--preset--font-size--2xl);
  }
  .text-h1 {
    font-size: var(--wp--preset--font-size--2xl);
  }

  /* ---- Grid ---- */
  .grid-cols-2,
  .grid-cols-3,
  .grid-cols-4 {
    grid-template-columns: 1fr;
  }

  .wp-block-columns {
    flex-direction: column;
  }

  .wp-block-media-text {
    grid-template-columns: 1fr;
  }

  /* ---- Section Spacing ---- */
  .section-padding {
    padding-top: 3rem;
    padding-bottom: 3rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .section-padding--lg {
    padding-top: 4rem;
    padding-bottom: 4rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .container-content,
  .container-wide {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  /* ---- Hero Block ---- */
  .hero-block {
    padding: 3rem 1.25rem;
  }

  .hero-block__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-block__headline {
    font-size: var(--wp--preset--font-size--3xl);
    max-width: none;
  }

  .hero-block__subheadline {
    font-size: var(--wp--preset--font-size--large);
  }

  .hero-block__body {
    font-size: var(--wp--preset--font-size--medium);
  }

  .hero-block__media {
    order: -1;
  }

  .hero-block__image {
    aspect-ratio: 16 / 9;
  }

  .hero-block__actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-block__actions .btn {
    width: 100%;
    justify-content: center;
  }

  /* ---- Site Header ---- */
  .nav-toggle {
    display: block;
  }

  .site-header .wp-block-navigation {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--wp--preset--color--background);
    z-index: 50;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
  }

  .site-header .wp-block-navigation.is-open {
    opacity: 1;
    visibility: visible;
  }

  .site-header .wp-block-navigation__container {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .site-header .wp-block-navigation-item__content {
    font-size: var(--wp--preset--font-size--large);
    padding: 0.75rem 2rem;
  }

  /* ---- Site Footer ---- */
  .site-footer .wp-block-group:first-of-type {
    flex-direction: column;
    text-align: center;
  }

  .site-footer .wp-block-navigation__container {
    justify-content: center;
  }

  /* ---- CTA Section ---- */
  .cta-section {
    padding: 3rem 1.25rem;
  }

  .cta-section__headline {
    font-size: var(--wp--preset--font-size--2xl);
  }

  .cta-section__body {
    font-size: var(--wp--preset--font-size--medium);
  }

  .cta-section__actions {
    flex-direction: column;
    width: 100%;
  }

  .cta-section__actions .btn {
    width: 100%;
    justify-content: center;
  }

  /* ---- Newsletter ---- */
  .newsletter-signup {
    padding: 3rem 1.25rem;
  }

  .newsletter-signup form > * {
    flex-direction: column;
    align-items: stretch;
  }

  .newsletter-signup input[type="email"] {
    width: 100%;
  }

  .newsletter-signup input[type="submit"],
  .newsletter-signup button[type="submit"] {
    width: 100%;
  }

  /* ---- Core Blocks ---- */
  .wp-block-cover {
    min-height: 300px;
  }

  .alignfull {
    margin-left: -1.25rem;
    margin-right: -1.25rem;
    width: calc(100% + 2.5rem);
    max-width: calc(100% + 2.5rem);
  }
}

/* --------------------------------------------------------------------------
   12. Print Styles
   -------------------------------------------------------------------------- */
@media print {
  *,
  *::before,
  *::after {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  a[href]::after {
    content: " (" attr(href) ")";
  }

  abbr[title]::after {
    content: " (" attr(title) ")";
  }

  a[href^="#"]::after,
  a[href^="javascript:"]::after {
    content: "";
  }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  thead {
    display: table-header-group;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  img {
    max-width: 100% !important;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }

  .site-header,
  .site-footer,
  .nav-toggle,
  .hero-block__actions .btn {
    display: none;
  }
}