:root {
  --nova-navy: #0b1f3a;
  --nova-navy-2: #132b4d;
  --nova-blue: #2257d6;
  --nova-blue-dark: #1745b8;
  --nova-soft-blue: #edf3ff;
  --nova-cream: #f8f6f1;
  --nova-surface: #ffffff;
  --nova-text: #15213a;
  --nova-muted: #667085;
  --nova-border: #e2e7ef;
  --nova-gold: #c99a4b;
  --nova-radius: 20px;
  --nova-shadow: 0 22px 60px rgba(14, 35, 70, .10);
  --nova-shell: 1240px;
}

html { scroll-behavior: smooth; }
body.nova-theme-active {
  margin: 0;
  color: var(--nova-text);
  background: #fff;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.nova-menu-open { overflow: hidden; }
.nova-theme-active *, .nova-theme-active *::before, .nova-theme-active *::after { box-sizing: border-box; }
.nova-theme-active img { max-width: 100%; height: auto; }
.nova-theme-active a { color: inherit; text-decoration: none; }
.nova-theme-active h1, .nova-theme-active h2, .nova-theme-active h3, .nova-theme-active h4 {
  color: var(--nova-navy);
  font-weight: 760;
  line-height: 1.12;
  letter-spacing: -.035em;
}
.nova-shell { width: min(calc(100% - 40px), var(--nova-shell)); margin-inline: auto; }
.nova-skip-link { position: fixed; left: 12px; top: -100px; z-index: 99999; background: #fff; padding: 12px 16px; border-radius: 8px; }
.nova-skip-link:focus { top: 12px; }

/* Header */
.nova-site-header { position: sticky; top: 0; z-index: 1000; background: rgba(255,255,255,.96); backdrop-filter: blur(16px); border-bottom: 1px solid rgba(226,231,239,.9); transition: box-shadow .25s ease; }
.nova-site-header.is-scrolled { box-shadow: 0 12px 34px rgba(12,31,58,.08); }
.nova-topbar { background: var(--nova-navy); color: #dce6f4; font-size: 12px; text-align: center; padding: 6px 0; }
.nova-header-main { min-height: 82px; display: grid; grid-template-columns: 190px 1fr auto; align-items: center; gap: 26px; }
.nova-brand { display: inline-flex; flex-direction: column; justify-content: center; color: var(--nova-navy); }
.nova-brand .custom-logo-link { display: block; line-height: 0; }
.nova-brand .custom-logo { max-height: 52px; width: auto; }
.nova-brand-name { font-size: 21px; font-weight: 800; line-height: 1; letter-spacing: -.025em; }
.nova-brand-name strong { color: var(--nova-blue); }
.nova-brand-tagline { margin-top: 7px; color: #7d8798; font-size: 9px; letter-spacing: .12em; text-transform: uppercase; font-weight: 700; }
.nova-primary-nav { min-width: 0; }
.nova-menu { display: flex; justify-content: center; align-items: center; gap: 24px; margin: 0; padding: 0; list-style: none; }
.nova-menu li { position: relative; margin: 0; }
.nova-menu > li > a { display: flex; align-items: center; min-height: 46px; font-size: 13px; font-weight: 700; color: #28354b; white-space: nowrap; }
.nova-menu > li > a:hover, .nova-menu > .current-menu-item > a, .nova-menu > .current-menu-ancestor > a { color: var(--nova-blue); }
.nova-menu .menu-item-has-children > a::after { content: "⌄"; margin-left: 6px; font-size: 12px; }
.nova-menu .sub-menu { position: absolute; top: calc(100% - 2px); left: -20px; width: 330px; margin: 0; padding: 12px; list-style: none; background: #fff; border: 1px solid var(--nova-border); border-radius: 16px; box-shadow: var(--nova-shadow); opacity: 0; visibility: hidden; transform: translateY(10px); transition: .2s ease; }
.nova-menu li:hover > .sub-menu, .nova-menu li:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nova-menu .sub-menu a { display: block; padding: 10px 12px; border-radius: 9px; font-size: 13px; font-weight: 650; line-height: 1.35; color: #344054; }
.nova-menu .sub-menu a:hover { background: var(--nova-soft-blue); color: var(--nova-blue); }
.nova-header-actions { display: flex; align-items: center; gap: 12px; }
.nova-language { display: flex; align-items: center; border: 1px solid var(--nova-border); border-radius: 10px; overflow: hidden; }
.nova-language a { padding: 9px 10px; font-size: 11px; font-weight: 800; color: #697386; }
.nova-language a.is-active { background: var(--nova-soft-blue); color: var(--nova-blue); }
.nova-menu-toggle { display: none; border: 0; background: transparent; width: 44px; height: 44px; padding: 9px; cursor: pointer; }
.nova-menu-toggle > span:not(.screen-reader-text) { display: block; height: 2px; background: var(--nova-navy); margin: 5px 0; border-radius: 2px; }

/* Buttons */
.nova-button, .nova-theme-active .wp-element-button, .nova-theme-active button[type="submit"], .nova-theme-active input[type="submit"] {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 48px; padding: 12px 22px;
  border: 1px solid var(--nova-blue); border-radius: 10px; background: var(--nova-blue); color: #fff !important;
  font-size: 14px; font-weight: 760; line-height: 1.2; cursor: pointer; box-shadow: none; transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}
.nova-button:hover, .nova-theme-active button[type="submit"]:hover, .nova-theme-active input[type="submit"]:hover { background: var(--nova-blue-dark); transform: translateY(-1px); box-shadow: 0 12px 24px rgba(34,87,214,.18); }
.nova-button-small { min-height: 42px; padding: 10px 16px; font-size: 12px; white-space: nowrap; }
.nova-button-secondary { background: #fff; color: var(--nova-navy) !important; border-color: #cad2df; }
.nova-button-secondary:hover { background: #f7f9fc; }
.nova-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Homepage */
.nova-site-main { min-height: 60vh; }
.nova-hero { position: relative; overflow: hidden; background: radial-gradient(circle at 85% 16%, rgba(34,87,214,.15), transparent 30%), linear-gradient(135deg, #fbfcff 0%, var(--nova-cream) 100%); }
.nova-hero::after { content: ""; position: absolute; inset: auto -120px -240px auto; width: 520px; height: 520px; border-radius: 50%; border: 1px solid rgba(34,87,214,.12); }
.nova-hero-grid { min-height: 630px; display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 54px; padding-block: 70px; }
.nova-eyebrow, .nova-kicker { margin: 0 0 14px; color: var(--nova-blue); font-size: 12px; line-height: 1.3; font-weight: 850; letter-spacing: .09em; text-transform: uppercase; }
.nova-hero h1 { max-width: 670px; margin: 0 0 24px; font-size: clamp(44px, 5vw, 68px); }
.nova-lead { max-width: 680px; margin: 0 0 30px; color: #4f5e74; font-size: clamp(18px, 2vw, 21px); line-height: 1.65; }
.nova-trust-row { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 32px; color: #667085; font-size: 12px; font-weight: 650; }
.nova-trust-row span::before { content: "✓"; margin-right: 7px; color: var(--nova-blue); font-weight: 900; }
.nova-team-collage { position: relative; min-height: 500px; }
.nova-team-photo { position: absolute; display: block; overflow: hidden; border: 6px solid rgba(255,255,255,.92); border-radius: 24px; background: #e6ebf4; box-shadow: var(--nova-shadow); }
.nova-team-photo > img, .nova-cover-image { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.nova-team-photo > span { position: absolute; left: 12px; right: 12px; bottom: 12px; padding: 12px 14px; border-radius: 12px; background: rgba(11,31,58,.90); color: #fff; }
.nova-team-photo strong, .nova-team-photo small { display: block; }
.nova-team-photo strong { font-size: 13px; }
.nova-team-photo small { margin-top: 3px; color: #d8e3f3; font-size: 10px; }
.nova-team-photo-anna { left: 0; top: 38px; width: 39%; height: 43%; }
.nova-team-photo-maria { left: 28px; bottom: 0; width: 42%; height: 43%; z-index: 2; }
.nova-team-photo-tatyana { right: 6px; top: 0; width: 61%; height: 91%; }
.nova-photo-placeholder { display: block; width: 100%; height: 100%; min-height: 180px; background: linear-gradient(135deg, #dfe7f5, #f5f0e8); }
.nova-section { padding-block: 86px; }
.nova-section-soft { background: #f7f9fd; }
.nova-section-heading { display: grid; grid-template-columns: 1fr minmax(320px, 520px); gap: 48px; align-items: end; margin-bottom: 38px; }
.nova-section-heading h2 { margin: 0; font-size: clamp(34px, 4vw, 48px); }
.nova-section-heading > p { margin: 0; color: var(--nova-muted); line-height: 1.75; }
.nova-service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.nova-card { position: relative; min-height: 290px; padding: 32px; border: 1px solid var(--nova-border); border-radius: var(--nova-radius); background: #fff; transition: .2s ease; }
.nova-card:hover { transform: translateY(-4px); box-shadow: var(--nova-shadow); }
.nova-card-number { display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px; margin-bottom: 26px; border-radius: 13px; background: var(--nova-soft-blue); color: var(--nova-blue); font-weight: 850; }
.nova-card h3 { margin: 0 0 14px; font-size: 24px; }
.nova-card p { margin: 0 0 22px; color: var(--nova-muted); }
.nova-card > a, .nova-person-card a, .nova-post-card a { color: var(--nova-blue); font-weight: 760; }
.nova-statement { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: center; margin-block: 0 20px; padding: 54px 58px; border-radius: 26px; background: var(--nova-navy); color: #fff; }
.nova-statement h2 { margin: 0; color: #fff; font-size: clamp(30px, 3.6vw, 43px); }
.nova-statement p { margin: 0; color: #cfdaea; font-size: 17px; line-height: 1.8; }
.nova-people-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.nova-person-card { overflow: hidden; border: 1px solid var(--nova-border); border-radius: var(--nova-radius); background: #fff; }
.nova-person-image { display: block; height: 390px; background: #e5ebf4; }
.nova-person-body { padding: 24px; }
.nova-person-body h3 { margin: 0 0 5px; font-size: 23px; }
.nova-person-role { margin: 0 0 14px !important; color: var(--nova-blue) !important; font-size: 13px; font-weight: 780; }
.nova-person-body p { color: var(--nova-muted); font-size: 14px; }
.nova-useful-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 24px; }
.nova-useful-feature { padding: 38px; border: 1px solid #dce6f8; border-radius: 24px; background: linear-gradient(145deg, #edf3ff, #fff); }
.nova-useful-feature h3 { margin: 0 0 16px; font-size: 31px; }
.nova-useful-feature p:not(.nova-kicker) { max-width: 680px; color: var(--nova-muted); }
.nova-useful-links { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.nova-useful-links a { display: flex; flex-direction: column; justify-content: center; min-height: 132px; padding: 20px; border: 1px solid var(--nova-border); border-radius: 16px; background: #fff; }
.nova-useful-links a:hover { border-color: #b8c9ed; box-shadow: 0 10px 30px rgba(21,49,96,.08); }
.nova-useful-links strong { color: var(--nova-navy); font-size: 15px; }
.nova-useful-links span { margin-top: 7px; color: var(--nova-muted); font-size: 12px; }
.nova-post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.nova-post-card { overflow: hidden; border: 1px solid var(--nova-border); border-radius: var(--nova-radius); background: #fff; }
.nova-post-image { display: block; height: 230px; background: #e8edf5; }
.nova-post-body { padding: 23px; }
.nova-post-meta { margin: 0 0 8px !important; color: var(--nova-blue) !important; font-size: 11px !important; font-weight: 760; text-transform: uppercase; letter-spacing: .06em; }
.nova-post-body h2, .nova-post-body h3 { margin: 0 0 12px; font-size: 21px; }
.nova-post-body p { color: var(--nova-muted); font-size: 14px; }
.nova-contact-cta { display: grid; grid-template-columns: .8fr 1.2fr; gap: 50px; padding: 52px; border-radius: 28px; background: var(--nova-navy); color: #fff; }
.nova-contact-cta h2 { margin: 0 0 14px; color: #fff; font-size: 42px; }
.nova-contact-cta > div > p:not(.nova-kicker) { color: #cbd7e8; }

/* Pages and posts */
.nova-page-shell { padding-bottom: 72px; }
.nova-page-header { padding-top: 54px; padding-bottom: 30px; }
.nova-page-header h1 { max-width: 900px; margin: 16px 0 0; font-size: clamp(38px, 5vw, 58px); }
.nova-breadcrumbs { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; color: #7b8799; font-size: 12px; }
.nova-breadcrumbs a:hover { color: var(--nova-blue); }
.nova-page-content:not(.tdc-content-wrap), .nova-page-content > .entry-content { width: 100%; }
.nova-page-shell:not(.nova-page-shell-legacy) .nova-page-content { width: min(calc(100% - 40px), 1050px); margin-inline: auto; }
.nova-page-content p, .nova-article-content p { color: #46546a; }
.nova-page-content h2, .nova-article-content h2 { margin-top: 1.8em; font-size: clamp(28px, 3vw, 39px); }
.nova-page-content h3, .nova-article-content h3 { margin-top: 1.6em; font-size: 25px; }
.nova-page-content ul, .nova-page-content ol, .nova-article-content ul, .nova-article-content ol { padding-left: 1.25em; }
.nova-page-content li, .nova-article-content li { margin: .45em 0; }
.nova-page-content table, .nova-article-content table { width: 100%; border-collapse: collapse; overflow: hidden; border-radius: 12px; }
.nova-page-content th, .nova-page-content td, .nova-article-content th, .nova-article-content td { padding: 12px 14px; border: 1px solid var(--nova-border); text-align: left; }
.nova-article-shell { padding-top: 54px; padding-bottom: 90px; }
.nova-article-header { max-width: 900px; margin: 22px auto 34px; text-align: center; }
.nova-article-header h1 { margin: 0; font-size: clamp(40px, 5.5vw, 66px); }
.nova-article-header .nova-lead { margin: 22px auto 0; }
.nova-article-hero { max-width: 1120px; height: min(54vw, 620px); margin: 0 auto 44px; overflow: hidden; border-radius: 24px; }
.nova-article-content { width: min(100%, 820px); margin-inline: auto; font-size: 17px; }
.nova-listing-shell { padding-top: 54px; padding-bottom: 90px; }
.nova-listing-shell .nova-post-grid { margin-top: 30px; }
.nova-error-page { min-height: 66vh; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding-block: 90px; }
.nova-error-page h1 { margin: 0 0 15px; font-size: clamp(48px, 8vw, 90px); }

/* Existing tagDiv / VC content compatibility */
.nova-legacy-tagdiv-content .nova-page-content { overflow: hidden; }
.nova-theme-active .tdc-zone, .nova-theme-active .td-main-content-wrap, .nova-theme-active .td-container, .nova-theme-active .tdc-row { max-width: 100%; }
.nova-theme-active .tdc-row, .nova-theme-active .td-container, .nova-theme-active .vc_row { font-family: inherit; }
.nova-theme-active .tdc-row:not(.td-stretch-content), .nova-theme-active .td-container { width: min(calc(100% - 40px), var(--nova-shell)); margin-inline: auto; }
.nova-theme-active .tdm-title, .nova-theme-active .tdb-title-text, .nova-theme-active .td_block_wrap h1, .nova-theme-active .td_block_wrap h2, .nova-theme-active .td_block_wrap h3 { font-family: inherit !important; }
.nova-theme-active .tdm-btn, .nova-theme-active .tds-button, .nova-theme-active .tdb-button, .nova-theme-active .tdm_block_button a { border-radius: 10px !important; }

/* Forms */
.nova-theme-active input[type="text"], .nova-theme-active input[type="email"], .nova-theme-active input[type="tel"], .nova-theme-active input[type="number"], .nova-theme-active input[type="date"], .nova-theme-active input[type="search"], .nova-theme-active input[type="url"], .nova-theme-active select, .nova-theme-active textarea {
  width: 100%; min-height: 48px; padding: 12px 14px; border: 1px solid #d9e0eb; border-radius: 10px; background: #fff; color: var(--nova-text); font: inherit; box-shadow: none;
}
.nova-theme-active textarea { min-height: 130px; resize: vertical; }
.nova-theme-active input:focus, .nova-theme-active select:focus, .nova-theme-active textarea:focus { outline: 3px solid rgba(34,87,214,.13); border-color: var(--nova-blue); }
.nova-contact-form .wpcf7-form { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.nova-contact-form .wpcf7-form > p { margin: 0; }
.nova-contact-form .wpcf7-form > p:has(textarea), .nova-contact-form .wpcf7-form > p:last-of-type { grid-column: 1 / -1; }
.nova-contact-form .wpcf7-spinner { position: absolute; }
.nova-contact-form label { color: #e4ebf7; font-size: 12px; }

/* Calculators and service snippets — neutral premium wrapper without changing logic */
.nova-theme-active [class*="rechner"], .nova-theme-active [class*="calculator"], .nova-theme-active [class*="nova_calc"], .nova-theme-active [class*="nova-calculator"], .nova-theme-active [id*="rechner"], .nova-theme-active [id*="calculator"] { font-family: inherit; }
.nova-theme-active .nova-rechner, .nova-theme-active .nova-calculator, .nova-theme-active .nrw-tool, .nova-theme-active .brief-hilfe-wrap, .nova-theme-active .behoerden-navigator { border-radius: 20px; }

/* Footer */
.nova-site-footer { background: #07162c; color: #bac7da; }
.nova-footer-grid { display: grid; grid-template-columns: 1.25fr repeat(3, 1fr); gap: 50px; padding-block: 54px 42px; }
.nova-brand-footer .nova-brand-name { color: #fff; }
.nova-footer-grid p { max-width: 310px; font-size: 13px; }
.nova-footer-grid h2 { margin: 0 0 15px; color: #fff; font-size: 14px; letter-spacing: 0; }
.nova-footer-grid > div > a:not(.nova-brand) { display: block; margin: 9px 0; color: #c7d2e2; font-size: 13px; }
.nova-footer-grid > div > a:hover { color: #fff; }
.nova-footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-block: 22px; border-top: 1px solid rgba(255,255,255,.12); font-size: 11px; }

@media (max-width: 1080px) {
  .nova-header-main { grid-template-columns: 1fr auto auto; min-height: 72px; }
  .nova-menu-toggle { display: block; order: 2; }
  .nova-primary-nav { position: fixed; left: 0; right: 0; top: 72px; bottom: 0; padding: 20px; background: #fff; overflow-y: auto; opacity: 0; visibility: hidden; transform: translateY(-10px); transition: .2s ease; }
  .nova-topbar + .nova-header-main .nova-primary-nav { top: 101px; }
  .nova-primary-nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .nova-menu { display: block; }
  .nova-menu > li > a { min-height: 48px; border-bottom: 1px solid var(--nova-border); font-size: 15px; }
  .nova-menu .sub-menu { position: static; display: none; width: auto; padding: 5px 0 10px 14px; border: 0; box-shadow: none; opacity: 1; visibility: visible; transform: none; }
  .nova-menu .submenu-open > .sub-menu { display: block; }
  .nova-header-actions { order: 3; }
  .nova-hero-grid { grid-template-columns: 1fr; min-height: auto; }
  .nova-team-collage { min-height: 500px; max-width: 620px; width: 100%; margin-inline: auto; }
  .nova-section-heading { grid-template-columns: 1fr; gap: 16px; }
  .nova-service-grid, .nova-people-grid, .nova-post-grid { grid-template-columns: repeat(2, 1fr); }
  .nova-service-grid .nova-card:last-child, .nova-people-grid .nova-person-card:last-child, .nova-post-grid .nova-post-card:last-child { grid-column: span 2; }
  .nova-statement, .nova-useful-grid, .nova-contact-cta { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nova-shell { width: min(calc(100% - 28px), var(--nova-shell)); }
  .nova-topbar { display: none; }
  .nova-header-main { min-height: 68px; gap: 8px; }
  .nova-brand-tagline { display: none; }
  .nova-brand-name { font-size: 18px; }
  .nova-primary-nav { top: 68px; }
  .nova-header-actions .nova-button { display: none; }
  .nova-language a { padding: 7px 8px; }
  .nova-hero-grid { padding-block: 48px; gap: 36px; }
  .nova-hero h1 { font-size: 42px; }
  .nova-team-collage { min-height: 390px; }
  .nova-team-photo { border-width: 4px; border-radius: 18px; }
  .nova-team-photo > span { left: 7px; right: 7px; bottom: 7px; padding: 8px; }
  .nova-team-photo strong { font-size: 10px; }
  .nova-team-photo small { font-size: 8px; }
  .nova-section { padding-block: 60px; }
  .nova-section-heading h2 { font-size: 35px; }
  .nova-service-grid, .nova-people-grid, .nova-post-grid, .nova-useful-links { grid-template-columns: 1fr; }
  .nova-service-grid .nova-card:last-child, .nova-people-grid .nova-person-card:last-child, .nova-post-grid .nova-post-card:last-child { grid-column: auto; }
  .nova-card { min-height: 0; padding: 25px; }
  .nova-statement { width: min(calc(100% - 28px), var(--nova-shell)); padding: 34px 26px; gap: 24px; border-radius: 20px; }
  .nova-person-image { height: 360px; }
  .nova-useful-feature { padding: 28px 24px; }
  .nova-contact-cta { padding: 30px 24px; gap: 26px; }
  .nova-contact-cta h2 { font-size: 34px; }
  .nova-contact-form .wpcf7-form { grid-template-columns: 1fr; }
  .nova-contact-form .wpcf7-form > p { grid-column: 1 !important; }
  .nova-page-header { padding-top: 38px; }
  .nova-article-shell { padding-top: 38px; }
  .nova-article-hero { height: 56vw; border-radius: 16px; }
  .nova-footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .nova-footer-grid > div:first-child { grid-column: 1 / -1; }
  .nova-footer-bottom { flex-direction: column; }
}

@media (max-width: 430px) {
  .nova-brand-name { font-size: 16px; }
  .nova-header-main { grid-template-columns: 1fr auto auto; }
  .nova-hero h1 { font-size: 36px; }
  .nova-lead { font-size: 17px; }
  .nova-actions { flex-direction: column; align-items: stretch; }
  .nova-button { width: 100%; }
  .nova-team-collage { min-height: 340px; }
  .nova-person-image { height: 330px; }
  .nova-footer-grid { grid-template-columns: 1fr; }
  .nova-footer-grid > div:first-child { grid-column: auto; }
}

/* v1.0.1 — keep legacy source code out of cards and improve the existing CF7 form */
.nova-service-card p,
.nova-person-body > p:not(.nova-person-role) {
  overflow-wrap: anywhere;
  word-break: normal;
}
.nova-person-body > p:not(.nova-person-role) {
  min-height: 70px;
}
.nova-contact-form .wpcf7-form-control-wrap { display: block; margin-top: 6px; }
.nova-contact-form .wpcf7-list-item { display: block; margin: 5px 0 0; }
.nova-contact-form .wpcf7-list-item label { display: flex; align-items: flex-start; gap: 8px; color: #e7edf7; line-height: 1.35; }
.nova-contact-form input[type="checkbox"],
.nova-contact-form input[type="radio"] {
  flex: 0 0 auto; width: 18px; height: 18px; margin: 1px 0 0; accent-color: var(--nova-blue);
}
.nova-contact-form .wpcf7-checkbox,
.nova-contact-form .wpcf7-radio { display: grid; grid-template-columns: 1fr 1fr; gap: 2px 16px; }
.nova-contact-form .wpcf7-not-valid-tip { margin-top: 5px; color: #ffd1d1; font-size: 11px; }
.nova-contact-form .wpcf7-response-output { grid-column: 1 / -1; margin: 10px 0 0 !important; color: #fff; border-radius: 10px; }
@media (max-width: 720px) {
  .nova-contact-form .wpcf7-checkbox,
  .nova-contact-form .wpcf7-radio { grid-template-columns: 1fr; }
}

/* v1.1.0 — corrected hero and team photography. Real site photos, no stretching or text over faces. */
.nova-section-heading-single {
  grid-template-columns: minmax(0, 760px);
  justify-content: start;
}

.nova-hero-grid {
  grid-template-columns: minmax(0, 1.02fr) minmax(480px, .98fr);
  gap: 66px;
  min-height: 640px;
  padding-block: 72px;
}
.nova-hero-copy { min-width: 0; position: relative; z-index: 2; }
.nova-hero-title {
  max-width: 720px !important;
  font-size: clamp(46px, 4vw, 60px) !important;
  line-height: 1.065 !important;
  text-wrap: balance;
}
.nova-hero-title > span { display: block; }
.nova-hero-visual {
  position: relative;
  z-index: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nova-hero-team-frame {
  position: relative;
  width: 100%;
  max-width: 620px;
  margin: 0;
  padding: 34px 30px 22px;
  overflow: hidden;
  border: 1px solid rgba(190, 202, 222, .82);
  border-radius: 32px;
  background:
    radial-gradient(circle at 50% 8%, rgba(255,255,255,.98), rgba(255,255,255,.42) 42%, transparent 65%),
    linear-gradient(145deg, #eef3fb 0%, #f8f4ed 100%);
  box-shadow: 0 28px 70px rgba(14, 35, 70, .14);
}
.nova-hero-team-frame::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  top: -190px;
  right: -110px;
  border: 1px solid rgba(34, 87, 214, .12);
  border-radius: 50%;
}
.nova-theme-active .nova-hero-team-image {
  position: relative;
  z-index: 1;
  display: block;
  width: 100% !important;
  max-width: 560px !important;
  height: auto !important;
  max-height: none !important;
  margin: 0 auto;
  object-fit: contain !important;
  object-position: center bottom !important;
}
.nova-hero-team-caption {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(171, 184, 205, .55);
}
.nova-hero-team-caption a {
  min-width: 0;
  padding: 5px 7px;
  text-align: center;
  border-radius: 10px;
  transition: background .18s ease, transform .18s ease;
}
.nova-hero-team-caption a:hover {
  background: rgba(255,255,255,.72);
  transform: translateY(-1px);
}
.nova-hero-team-caption strong,
.nova-hero-team-caption small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
}
.nova-hero-team-caption strong {
  color: var(--nova-navy);
  font-size: 12px;
  line-height: 1.25;
  white-space: nowrap;
}
.nova-hero-team-caption small {
  margin-top: 3px;
  color: var(--nova-muted);
  font-size: 9px;
  line-height: 1.3;
}

/* Team cards: portrait ratio matches the original 853×1280 files. */
.nova-person-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(14, 35, 70, .06);
}
.nova-person-image {
  display: block;
  width: 100%;
  height: auto !important;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: #e7ebf2;
}
.nova-theme-active .nova-person-image > img,
.nova-theme-active img.nova-person-photo {
  display: block;
  width: 100% !important;
  height: 100% !important;
  max-height: none !important;
  margin: 0 !important;
  object-fit: cover !important;
  object-position: center top !important;
}
.nova-person-body {
  position: relative;
  z-index: 2;
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
  background: #fff;
}
.nova-person-body > p:not(.nova-person-role) {
  min-height: 0;
  margin-bottom: 18px;
}
.nova-person-body > a { margin-top: auto; }

@media (min-width: 861px) and (max-width: 1080px) {
  .nova-people-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .nova-people-grid .nova-person-card:last-child { grid-column: auto; }
}

@media (max-width: 1080px) {
  .nova-hero-grid {
    grid-template-columns: 1fr;
    gap: 44px;
    padding-block: 58px 66px;
  }
  .nova-hero-copy { max-width: 760px; }
  .nova-hero-visual { width: 100%; }
  .nova-hero-team-frame { max-width: 680px; }
}

@media (max-width: 720px) {
  .nova-hero-title {
    font-size: clamp(37px, 10.5vw, 46px) !important;
    line-height: 1.08 !important;
  }
  .nova-hero-title > span { display: block; }
  .nova-hero-team-frame {
    max-width: 540px;
    padding: 22px 14px 16px;
    border-radius: 22px;
  }
  .nova-hero-team-caption {
    gap: 2px;
    margin-top: 12px;
    padding-top: 12px;
  }
  .nova-hero-team-caption a { padding-inline: 3px; }
  .nova-hero-team-caption strong { font-size: 10px; }
  .nova-hero-team-caption small { font-size: 8px; }
  .nova-person-image { aspect-ratio: 2 / 3; }
}

@media (max-width: 430px) {
  .nova-hero-grid { gap: 30px; padding-block: 42px 50px; }
  .nova-hero-title { font-size: 36px !important; }
  .nova-hero-team-frame { padding-inline: 9px; }
  .nova-hero-team-caption small { display: none; }
}

@media (min-width: 1081px) {
  .nova-hero-title { font-size: 56px !important; }
  .nova-hero-title > span { white-space: nowrap; }
}

/* v1.2.0 — article controls and the real compact form from the Contacts page. */
.nova-post-card {
  position: relative !important;
  display: flex !important;
  min-width: 0;
  flex-direction: column !important;
  isolation: isolate;
}
.nova-post-card .nova-post-image {
  position: relative !important;
  z-index: 1;
  display: block !important;
  flex: 0 0 230px;
  height: 230px !important;
  margin: 0 !important;
  overflow: hidden;
}
.nova-post-card .nova-post-body {
  position: relative !important;
  inset: auto !important;
  z-index: 2;
  display: flex;
  flex: 1;
  flex-direction: column;
  margin: 0 !important;
  padding: 23px !important;
  transform: none !important;
  background: #fff;
}
.nova-post-card .nova-post-body h3 { order: 1; }
.nova-post-card .nova-post-meta {
  position: static !important;
  inset: auto !important;
  order: 2;
  display: block !important;
  float: none !important;
  width: auto !important;
  margin: -3px 0 12px !important;
  padding: 0 !important;
  transform: none !important;
  background: transparent !important;
  color: #7a8699 !important;
  font-size: 11px !important;
  line-height: 1.4 !important;
  text-shadow: none !important;
}
.nova-post-card .nova-post-body > p:not(.nova-post-meta) { order: 3; }
.nova-post-card .nova-post-body > a:last-child { order: 4; margin-top: auto; }

.nova-contact-cta {
  grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr);
  align-items: start;
}
.nova-contact-form { min-width: 0; }
.nova-contact-form .wpcf7 { width: 100%; }
.nova-contact-form .wpcf7-form {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 14px 16px !important;
  align-items: start;
}
.nova-contact-form .wpcf7-form > p,
.nova-contact-form .wpcf7-form > label {
  min-width: 0;
  margin: 0 !important;
}
.nova-contact-form .wpcf7-form > p:nth-of-type(4),
.nova-contact-form .wpcf7-form > p:nth-of-type(5),
.nova-contact-form .wpcf7-form > label:has(textarea) {
  grid-column: 1 / -1 !important;
}
.nova-contact-form label {
  display: block;
  color: #e6edf8;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.4;
}
.nova-contact-form .wpcf7-form-control-wrap {
  display: block;
  margin-top: 7px;
}
.nova-contact-form input[type="text"],
.nova-contact-form input[type="email"],
.nova-contact-form input[type="tel"],
.nova-contact-form textarea {
  width: 100% !important;
  margin: 0 !important;
}
.nova-contact-form textarea {
  min-height: 150px !important;
  max-height: 260px;
}
.nova-contact-form input[type="submit"] { min-width: 150px; }
.nova-contact-form .wpcf7-spinner { margin: 12px 0 0 12px; }

@media (max-width: 720px) {
  .nova-post-card .nova-post-image { flex-basis: 210px; height: 210px !important; }
  .nova-contact-form .wpcf7-form { grid-template-columns: 1fr !important; }
  .nova-contact-form .wpcf7-form > p,
  .nova-contact-form .wpcf7-form > label { grid-column: 1 !important; }
}

/* v1.3.0 — premium rendering for every legacy tagDiv page, wider articles and reliable mobile navigation. */

/* Legacy pages are rendered by the child theme; no tagDiv source is exposed. */
.nova-legacy-page {
  overflow: clip;
  background: #fff;
}
.nova-legacy-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--nova-border);
  background:
    radial-gradient(circle at 82% 14%, rgba(34,87,214,.15), transparent 31%),
    linear-gradient(135deg, #fbfcff 0%, #f7f4ee 100%);
}
.nova-legacy-hero::after {
  content: "";
  position: absolute;
  right: -150px;
  bottom: -280px;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(34,87,214,.12);
  border-radius: 50%;
  pointer-events: none;
}
.nova-legacy-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(380px, .98fr);
  gap: clamp(42px, 6vw, 84px);
  align-items: center;
  min-height: 560px;
  padding-block: 72px;
}
.nova-legacy-hero-copy { min-width: 0; }
.nova-legacy-hero-copy .nova-breadcrumbs { margin-bottom: 28px; }
.nova-legacy-hero-copy h1 {
  max-width: 760px;
  margin: 0 0 22px;
  font-size: clamp(44px, 5vw, 68px);
  line-height: 1.02;
  text-wrap: balance;
}
.nova-legacy-hero-lead {
  max-width: 690px;
  margin: 0 0 30px;
  color: #506077;
  font-size: clamp(18px, 1.7vw, 21px);
  line-height: 1.7;
}
.nova-legacy-hero-image {
  position: relative;
  min-width: 0;
  margin: 0;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(192,203,222,.85);
  border-radius: 30px;
  background: rgba(255,255,255,.76);
  box-shadow: 0 28px 70px rgba(14,35,70,.14);
}
.nova-theme-active .nova-legacy-hero-image-file {
  display: block;
  width: 100% !important;
  height: min(470px, 38vw) !important;
  min-height: 340px;
  margin: 0 !important;
  border-radius: 20px;
  object-fit: cover !important;
  object-position: center top !important;
}
.nova-legacy-hero-mark {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 390px;
  border: 1px solid rgba(190,202,222,.82);
  border-radius: 30px;
  background: linear-gradient(145deg,#eef3fb,#f8f4ed);
  box-shadow: var(--nova-shadow);
}
.nova-legacy-hero-mark span {
  color: rgba(34,87,214,.14);
  font-size: clamp(150px, 20vw, 280px);
  font-weight: 900;
  line-height: .8;
}
.nova-legacy-content-wrap {
  padding-block: 78px 96px;
}
.nova-legacy-rendered {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}
.nova-legacy-module { min-width: 0; }
.nova-legacy-heading,
.nova-legacy-richtext,
.nova-legacy-action,
.nova-legacy-separator,
.nova-legacy-rendered > .wpcf7,
.nova-legacy-rendered > form,
.nova-legacy-rendered > p,
.nova-legacy-rendered > ul,
.nova-legacy-rendered > ol,
.nova-legacy-rendered > table,
.nova-legacy-rendered > h2,
.nova-legacy-rendered > h3,
.nova-legacy-rendered > h4 {
  grid-column: 1 / -1;
}
.nova-legacy-heading {
  margin-top: 34px;
  padding-top: 12px;
}
.nova-legacy-heading:first-child { margin-top: 0; }
.nova-legacy-heading h2,
.nova-legacy-heading h3,
.nova-legacy-heading h4 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(30px, 3.3vw, 46px);
}
.nova-legacy-richtext {
  max-width: 980px;
  color: #46546a;
  font-size: 17px;
  line-height: 1.78;
}
.nova-legacy-richtext > :first-child { margin-top: 0; }
.nova-legacy-richtext > :last-child { margin-bottom: 0; }
.nova-legacy-richtext h2,
.nova-legacy-richtext h3,
.nova-legacy-richtext h4 {
  margin: 1.5em 0 .55em;
}
.nova-legacy-richtext ul,
.nova-legacy-richtext ol { padding-left: 1.25em; }
.nova-legacy-richtext li { margin: .45em 0; }
.nova-legacy-card {
  grid-column: span 4;
  display: flex;
  min-height: 270px;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--nova-border);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 14px 38px rgba(14,35,70,.055);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.nova-legacy-card:hover {
  transform: translateY(-4px);
  border-color: #cad7ef;
  box-shadow: 0 22px 54px rgba(14,35,70,.10);
}
.nova-legacy-card-icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 22px;
  place-items: center;
  border-radius: 15px;
  background: var(--nova-soft-blue);
  color: var(--nova-blue);
  font-size: 24px;
  font-weight: 850;
}
.nova-legacy-card h3 {
  margin: 0 0 12px;
  font-size: 23px;
}
.nova-legacy-card-copy {
  color: var(--nova-muted);
  line-height: 1.67;
}
.nova-legacy-card-copy p { margin: 0 0 12px; }
.nova-legacy-card-link {
  margin-top: auto;
  padding-top: 18px;
  color: var(--nova-blue) !important;
  font-weight: 780;
}
.nova-legacy-image {
  grid-column: span 6;
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  background: #eef2f8;
  box-shadow: 0 18px 50px rgba(14,35,70,.08);
}
.nova-theme-active .nova-legacy-image-file {
  display: block;
  width: 100% !important;
  height: 100% !important;
  min-height: 360px;
  max-height: 560px;
  margin: 0 !important;
  object-fit: cover !important;
  object-position: center !important;
}
.nova-legacy-action {
  display: flex;
  justify-content: flex-start;
  padding-block: 12px 22px;
}
.nova-legacy-person {
  grid-column: span 4;
  overflow: hidden;
  border: 1px solid var(--nova-border);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(14,35,70,.07);
}
.nova-legacy-person-image {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #e8edf5;
}
.nova-theme-active .nova-legacy-person-photo {
  display: block;
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  object-fit: cover !important;
  object-position: center top !important;
}
.nova-legacy-person-body { padding: 24px; }
.nova-legacy-person-body h3 { margin: 0 0 6px; font-size: 23px; }
.nova-legacy-person-role { margin: 0 0 14px !important; color: var(--nova-blue) !important; font-size: 13px; font-weight: 780; }
.nova-legacy-person-body > div { color: var(--nova-muted); }
.nova-legacy-person-body > a { display: inline-block; margin-top: 14px; color: var(--nova-blue); font-weight: 780; }
.nova-legacy-separator {
  width: 100%;
  margin-block: 18px;
  border: 0;
  border-top: 1px solid var(--nova-border);
}
.nova-legacy-rendered .wpcf7 {
  width: min(100%, 980px);
  padding: clamp(26px, 4vw, 48px);
  border-radius: 26px;
  background: var(--nova-navy);
  box-shadow: 0 24px 62px rgba(14,35,70,.13);
}
.nova-legacy-rendered .wpcf7-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 14px 16px;
}
.nova-legacy-rendered .wpcf7-form > p { margin: 0; color: #e7edf7; }
.nova-legacy-rendered .wpcf7-form > p:has(textarea),
.nova-legacy-rendered .wpcf7-form > p:last-of-type { grid-column: 1 / -1; }
.nova-legacy-rendered .wpcf7 label { color: #e7edf7; font-size: 12px; font-weight: 700; }
.nova-legacy-rendered .wpcf7-response-output { color: #fff; }

/* A readable, premium article template. */
.nova-article-shell {
  width: min(calc(100% - 40px), 1320px) !important;
  max-width: none !important;
  padding-top: 64px;
  padding-bottom: 110px;
}
.nova-article-header {
  max-width: 1080px !important;
  margin: 24px auto 38px !important;
  text-align: center;
}
.nova-article-header h1 {
  max-width: 1040px;
  margin-inline: auto;
  font-size: clamp(44px, 5vw, 72px) !important;
  line-height: 1.05;
  text-wrap: balance;
}
.nova-article-header .nova-post-meta {
  margin-bottom: 14px;
  color: var(--nova-blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.nova-article-hero {
  width: min(100%, 1180px) !important;
  max-width: none !important;
  height: min(58vw, 680px) !important;
  margin: 0 auto 54px !important;
  border-radius: 26px;
  box-shadow: 0 24px 64px rgba(14,35,70,.11);
}
.nova-article-content {
  width: min(100%, 940px) !important;
  max-width: none !important;
  margin-inline: auto !important;
  color: #33435a;
  font-size: clamp(17px, 1.35vw, 19px) !important;
  line-height: 1.82;
}
.nova-article-content > :first-child { margin-top: 0; }
.nova-article-content h2 {
  margin-top: 1.8em;
  margin-bottom: .55em;
  font-size: clamp(31px, 3vw, 45px) !important;
}
.nova-article-content h3 {
  margin-top: 1.65em;
  margin-bottom: .5em;
  font-size: clamp(25px, 2.2vw, 32px) !important;
}
.nova-article-content p { color: #46546a; }
.nova-article-content figure,
.nova-article-content .wp-block-image { margin-block: 34px; }
.nova-article-content img { border-radius: 18px; }
.nova-article-content table {
  font-size: 15px;
  background: #fff;
}
.nova-article-content blockquote {
  margin: 34px 0;
  padding: 24px 28px;
  border-left: 4px solid var(--nova-blue);
  border-radius: 0 16px 16px 0;
  background: var(--nova-soft-blue);
}
.nova-article-content .alignwide,
.nova-article-content > table {
  width: min(1120px, calc(100vw - 40px));
  max-width: none;
  margin-left: 50%;
  transform: translateX(-50%);
}

/* Mobile menu: visible button, full-screen panel, overlay and safe stacking. */
.nova-nav-overlay { display: none; }
@media (max-width: 1080px) {
  .nova-site-header { z-index: 10000; }
  .nova-header-main {
    position: relative;
    grid-template-columns: minmax(0, 1fr) auto auto !important;
  }
  .nova-brand { grid-column: 1; grid-row: 1; min-width: 0; }
  .nova-menu-toggle {
    position: relative;
    z-index: 10003;
    grid-column: 2;
    grid-row: 1;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 46px !important;
    height: 46px !important;
    margin: 0 !important;
    padding: 10px !important;
    border: 1px solid var(--nova-border) !important;
    border-radius: 12px !important;
    background: #fff !important;
    box-shadow: 0 8px 24px rgba(14,35,70,.08);
  }
  .nova-menu-toggle > span:not(.screen-reader-text) {
    width: 22px;
    height: 2px;
    margin: 3px 0;
    transition: transform .2s ease, opacity .2s ease;
  }
  .nova-menu-toggle.is-active > span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nova-menu-toggle.is-active > span:nth-child(2) { opacity: 0; }
  .nova-menu-toggle.is-active > span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .nova-header-actions { grid-column: 3; grid-row: 1; order: initial !important; }
  .nova-primary-nav {
    position: fixed !important;
    z-index: 10002;
    left: 0 !important;
    right: 0 !important;
    top: 101px;
    bottom: 0 !important;
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    padding: 20px 22px 44px !important;
    overflow-y: auto !important;
    background: #fff !important;
    box-shadow: 0 26px 60px rgba(14,35,70,.18);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-14px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  }
  .nova-primary-nav.is-open {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateY(0) !important;
  }
  .nova-nav-overlay {
    position: fixed;
    z-index: 10001;
    inset: 0;
    display: block;
    border: 0;
    background: rgba(6,18,37,.48);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: .2s ease;
  }
  .nova-nav-overlay.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .nova-menu {
    display: block !important;
    width: min(100%, 720px);
    margin-inline: auto;
  }
  .nova-menu > li > a {
    min-height: 54px;
    padding-inline: 4px;
    font-size: 16px;
  }
  .nova-menu .sub-menu { background: #f7f9fd; border-radius: 12px; }

  .nova-legacy-hero-grid { grid-template-columns: 1fr; min-height: 0; padding-block: 58px 66px; }
  .nova-legacy-hero-copy { max-width: 760px; }
  .nova-legacy-hero-image { max-width: 720px; width: 100%; margin-inline: auto; }
  .nova-theme-active .nova-legacy-hero-image-file { height: min(62vw, 520px) !important; }
  .nova-legacy-card, .nova-legacy-person { grid-column: span 6; }
  .nova-legacy-image { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  .nova-primary-nav { top: 68px !important; padding-inline: 14px !important; }
  .nova-header-actions .nova-language a:not(.is-active) { display: none; }
  .nova-legacy-hero-grid { padding-block: 44px 52px; gap: 34px; }
  .nova-legacy-hero-copy h1 { font-size: clamp(38px, 11vw, 50px); }
  .nova-legacy-hero-image { padding: 10px; border-radius: 22px; }
  .nova-theme-active .nova-legacy-hero-image-file { min-height: 260px; height: 74vw !important; border-radius: 15px; }
  .nova-legacy-hero-mark { display: none; }
  .nova-legacy-content-wrap { padding-block: 54px 68px; }
  .nova-legacy-rendered { grid-template-columns: 1fr; gap: 16px; }
  .nova-legacy-heading,
  .nova-legacy-richtext,
  .nova-legacy-action,
  .nova-legacy-separator,
  .nova-legacy-card,
  .nova-legacy-image,
  .nova-legacy-person,
  .nova-legacy-rendered > * { grid-column: 1 !important; }
  .nova-legacy-card { min-height: 0; padding: 25px; }
  .nova-theme-active .nova-legacy-image-file { min-height: 250px; max-height: 420px; }
  .nova-legacy-rendered .wpcf7 { padding: 25px 20px; border-radius: 20px; }
  .nova-legacy-rendered .wpcf7-form { grid-template-columns: 1fr; }
  .nova-legacy-rendered .wpcf7-form > p { grid-column: 1 !important; }

  .nova-article-shell { width: min(calc(100% - 28px), 1320px) !important; padding-top: 42px; padding-bottom: 72px; }
  .nova-article-header { margin-top: 18px !important; margin-bottom: 28px !important; }
  .nova-article-header h1 { font-size: clamp(36px, 10vw, 50px) !important; }
  .nova-article-hero { height: 62vw !important; min-height: 240px; margin-bottom: 34px !important; border-radius: 17px; }
  .nova-article-content { font-size: 17px !important; line-height: 1.75; }
  .nova-article-content .alignwide,
  .nova-article-content > table { width: calc(100vw - 28px); }
}

@media (max-width: 430px) {
  .nova-header-actions { gap: 6px; }
  .nova-language a { padding: 7px 8px !important; }
  .nova-menu-toggle { width: 42px !important; height: 42px !important; }
  .nova-legacy-hero-copy .nova-breadcrumbs { margin-bottom: 20px; }
  .nova-legacy-hero-copy h1 { font-size: 36px; }
  .nova-legacy-richtext { font-size: 16px; }
}

.nova-article-categories {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}
.nova-article-categories a {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 11px;
  border-radius: 999px;
  background: var(--nova-soft-blue);
  color: var(--nova-blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.nova-article-meta-line {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
  color: #7a8699;
  font-size: 12px;
  font-weight: 650;
}
.nova-article-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: center;
  width: min(100%, 1040px);
  margin: 72px auto 0;
  padding: 38px 42px;
  border-radius: 24px;
  background: var(--nova-navy);
  color: #d8e2f1;
  box-shadow: 0 24px 62px rgba(14,35,70,.13);
}
.nova-article-cta h2 { margin: 0 0 10px; color: #fff; font-size: clamp(29px, 3vw, 40px); }
.nova-article-cta p { margin: 0; max-width: 720px; }
.nova-article-cta .nova-kicker { margin-bottom: 10px; color: #8fb0ff; }
.nova-related-posts { margin-top: 86px; }
.nova-related-posts .nova-section-heading { margin-bottom: 30px; }

@media (max-width: 720px) {
  .nova-article-cta { grid-template-columns: 1fr; padding: 28px 24px; margin-top: 52px; }
  .nova-article-cta .nova-button { width: 100%; }
  .nova-related-posts { margin-top: 62px; }
}
@media (max-width: 1080px) {
  .nova-site-header {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: #fff !important;
  }
}

/* =========================================================
   NOVA ASTRA COMPLETE 2.0 — clean migrated pages
   ========================================================= */
.nova-page-content{width:100%;overflow:hidden;background:#fff}.nova-inner-hero{position:relative;overflow:hidden;background:radial-gradient(circle at 88% 16%,rgba(34,87,214,.15),transparent 31%),linear-gradient(135deg,#fbfcff 0%,#f8f6f1 100%);border-bottom:1px solid var(--nova-border)}.nova-inner-hero:after{content:"";position:absolute;width:500px;height:500px;right:-210px;bottom:-330px;border:1px solid rgba(34,87,214,.12);border-radius:50%}.nova-inner-hero-grid{position:relative;z-index:1;display:grid;grid-template-columns:minmax(0,1fr) minmax(340px,.74fr);gap:72px;align-items:center;min-height:560px;padding-block:68px}.nova-inner-hero-copy{max-width:720px}.nova-inner-hero-copy .nova-breadcrumbs{margin-bottom:28px}.nova-inner-hero-copy h1{margin:0 0 22px;font-size:clamp(46px,5.3vw,72px);text-wrap:balance}.nova-inner-lead{max-width:680px;margin:0 0 30px;color:#526178;font-size:clamp(18px,1.8vw,21px);line-height:1.7}.nova-inner-hero-media{margin:0;padding:13px;background:#fff;border:1px solid #d7dfeb;border-radius:28px;box-shadow:var(--nova-shadow);overflow:hidden}.nova-inner-hero-image{display:block;width:100%;height:min(36vw,470px);object-fit:cover;object-position:center top;border-radius:19px}.nova-inner-hero-specialist .nova-inner-hero-image{object-fit:contain;background:#eef2f8}.nova-inner-hero-symbol{display:grid;place-items:center;aspect-ratio:1/1;max-width:420px;margin:auto;border:1px solid #d7dfeb;border-radius:40px;background:linear-gradient(145deg,#edf3ff,#fff);box-shadow:var(--nova-shadow)}.nova-inner-hero-symbol span{font-size:160px;font-weight:850;color:rgba(34,87,214,.13)}
.nova-content-section{padding:86px 0}.nova-content-section:nth-child(even){background:#f7f9fd}.nova-content-inner{width:min(calc(100% - 40px),1180px);margin-inline:auto}.nova-content-heading{max-width:900px;margin:0 0 34px}.nova-content-heading h2{margin:0!important;font-size:clamp(34px,4vw,50px)!important;text-wrap:balance}.nova-section-intro,.nova-richtext{max-width:900px;color:#44536a;font-size:17px;line-height:1.82}.nova-section-intro{margin:0 0 30px}.nova-richtext>h2:first-child,.nova-richtext>h3:first-child{margin-top:0}.nova-richtext p{margin:0 0 1.2em}.nova-richtext h2{margin:1.55em 0 .6em!important;font-size:clamp(31px,3.2vw,43px)!important}.nova-richtext h3{margin:1.4em 0 .5em!important;font-size:clamp(24px,2.3vw,31px)!important}.nova-richtext ul,.nova-richtext ol{padding-left:1.35em}.nova-richtext li{margin:.55em 0}.nova-richtext blockquote,.nova-feature-quote{margin:34px 0;padding:28px 32px;border-left:5px solid var(--nova-gold);border-radius:0 18px 18px 0;background:#fff8ec;color:#26364d;font-size:20px;line-height:1.65;box-shadow:0 15px 40px rgba(14,35,70,.055)}
.nova-premium-grid{display:grid;grid-template-columns:repeat(12,minmax(0,1fr));gap:20px}.nova-premium-grid.nova-columns-2 .nova-premium-card{grid-column:span 6}.nova-premium-grid.nova-columns-3 .nova-premium-card{grid-column:span 4}.nova-premium-grid.nova-columns-4 .nova-premium-card{grid-column:span 3}.nova-premium-card{display:flex;flex-direction:column;min-height:270px;padding:30px;border:1px solid var(--nova-border);border-radius:22px;background:#fff;box-shadow:0 14px 38px rgba(14,35,70,.045);transition:.22s ease}.nova-premium-card:hover{transform:translateY(-4px);border-color:#cbd7ed;box-shadow:0 23px 58px rgba(14,35,70,.095)}.nova-card-index{display:grid;place-items:center;width:48px;height:48px;margin-bottom:25px;border-radius:14px;background:var(--nova-soft-blue);color:var(--nova-blue);font-weight:850}.nova-premium-card h3{margin:0 0 13px!important;font-size:23px!important}.nova-card-copy{color:var(--nova-muted);line-height:1.7}.nova-card-copy p{margin:0 0 12px}.nova-text-link{display:inline-block;margin-top:auto;padding-top:18px;color:var(--nova-blue)!important;font-weight:780}.nova-content-actions{display:flex;flex-wrap:wrap;gap:12px;margin-top:24px}
.nova-split-layout{display:grid;grid-template-columns:1fr 1fr;gap:58px;align-items:center}.nova-split-image{margin:0;overflow:hidden;border-radius:24px;background:#e8edf5;box-shadow:var(--nova-shadow)}.nova-split-image img{display:block;width:100%;height:min(40vw,520px);object-fit:cover}.nova-gallery{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}.nova-gallery figure{margin:0;overflow:hidden;border-radius:18px}.nova-gallery img{display:block;width:100%;height:300px;object-fit:cover}.nova-inline-cta{width:min(calc(100% - 40px),1180px);margin:34px auto 86px;padding:44px 48px;display:grid;grid-template-columns:1fr auto;gap:36px;align-items:center;border-radius:26px;background:var(--nova-navy);color:#d7e1ef;box-shadow:0 24px 64px rgba(14,35,70,.14)}.nova-inline-cta h2{margin:0 0 10px!important;color:#fff!important;font-size:clamp(31px,3.6vw,45px)!important}.nova-inline-cta p{margin:0;color:#cbd7e8}.nova-form-panel{padding:clamp(26px,4vw,48px);border-radius:26px;background:var(--nova-navy);box-shadow:0 24px 64px rgba(14,35,70,.13)}.nova-native-form{color:#fff}.nova-form-grid{display:grid;grid-template-columns:1fr 1fr;gap:16px}.nova-native-form label{display:block}.nova-native-form label>span{display:block;margin-bottom:7px;color:#e5ecf7;font-size:12px;font-weight:750}.nova-form-wide{grid-column:1/-1}.nova-form-consent{display:flex!important;gap:10px;align-items:flex-start}.nova-form-consent input{flex:0 0 auto;width:18px!important;min-height:18px!important;margin-top:3px}.nova-form-consent span{margin:0!important;font-weight:500!important}.nova-native-form .nova-button{margin-top:18px}.nova-form-honeypot{position:absolute;left:-9999px}.nova-form-success{margin-bottom:18px;padding:14px 16px;border-radius:10px;background:#ddf5e5;color:#155d31;font-weight:700}.nova-tool-frame{padding:clamp(10px,2vw,22px);border:1px solid var(--nova-border);border-radius:24px;background:#fff;box-shadow:0 18px 50px rgba(14,35,70,.06)}.nova-admin-warning{padding:25px;border:1px solid #f0bc78;border-radius:14px;background:#fff4e7;color:#6f430d}.nova-faq{display:grid;gap:12px}.nova-faq details{padding:20px 22px;border:1px solid var(--nova-border);border-radius:14px;background:#fff}.nova-faq summary{cursor:pointer;color:var(--nova-navy);font-weight:780}.nova-faq details p{margin:13px 0 0}
.nova-page-content-specialist .nova-content-section:first-child .nova-richtext{font-size:18px}.nova-page-content-program .nova-content-section:first-child{background:#fff}.nova-page-content-program .nova-premium-card{min-height:240px}.nova-page-content-contact .nova-content-section:last-child{background:#f7f9fd}.nova-page-content-tool .nova-content-section{padding-top:54px}.nova-type-directory .nova-inner-hero-grid,.nova-type-tool .nova-inner-hero-grid{min-height:450px}
.nova-listing-hero{padding:74px 0 52px;background:linear-gradient(135deg,#fbfcff,#f3f6fc);border-bottom:1px solid var(--nova-border)}.nova-listing-hero h1{margin:14px 0 0;font-size:clamp(44px,5vw,68px)}.nova-listing-description{max-width:760px;margin-top:18px;color:var(--nova-muted);font-size:18px}.nova-post-grid-listing{grid-template-columns:repeat(3,1fr)}.nova-post-grid-listing .nova-post-card{display:flex;flex-direction:column}.nova-post-grid-listing .nova-post-body{display:flex;flex-direction:column;flex:1}.nova-post-grid-listing .nova-post-body>a:last-child{margin-top:auto}.navigation.pagination{margin-top:40px}.nav-links{display:flex;gap:8px;justify-content:center}.page-numbers{display:grid;place-items:center;min-width:42px;height:42px;border:1px solid var(--nova-border);border-radius:10px}.page-numbers.current{background:var(--nova-blue);border-color:var(--nova-blue);color:#fff}.nova-error-code{margin:0;color:var(--nova-blue);font-size:20px;font-weight:850}.nova-error-page>.nova-shell{padding-block:100px}.nova-error-page h1{font-size:clamp(48px,8vw,92px)}
.nova-article-category{margin:0 0 14px;color:var(--nova-blue)!important;font-size:12px;font-weight:850;letter-spacing:.09em;text-transform:uppercase}.nova-article-meta{display:flex;justify-content:center;gap:10px;margin-top:22px;color:#718096;font-size:13px}.nova-article-hero-image{display:block;width:100%;height:100%;object-fit:cover}.nova-article-cta{display:grid;grid-template-columns:1fr auto;gap:30px;align-items:center;width:min(100%,1040px);margin:60px auto;padding:38px 42px;border-radius:24px;background:var(--nova-navy);color:#cdd8e8}.nova-article-cta h2{margin:0 0 10px!important;color:#fff!important;font-size:34px!important}.nova-article-cta p{margin:0;color:#cdd8e8}.nova-related{margin-top:70px}.nova-related .nova-content-heading{margin-inline:auto;text-align:center}
@media(max-width:1080px){.nova-inner-hero-grid{grid-template-columns:1fr;gap:40px;min-height:0}.nova-inner-hero-media,.nova-inner-hero-symbol{width:min(100%,680px);margin-inline:auto}.nova-inner-hero-image{height:min(62vw,540px)}.nova-premium-grid.nova-columns-4 .nova-premium-card{grid-column:span 6}.nova-post-grid-listing{grid-template-columns:repeat(2,1fr)}.nova-inline-cta,.nova-article-cta{grid-template-columns:1fr}.nova-split-layout{gap:32px}}
@media(max-width:720px){.nova-inner-hero-grid{padding-block:45px 54px;gap:30px}.nova-inner-hero-copy h1{font-size:clamp(38px,11vw,52px)}.nova-inner-hero-image{height:78vw;border-radius:15px}.nova-inner-hero-media{padding:9px;border-radius:20px}.nova-content-section{padding:58px 0}.nova-content-inner{width:min(calc(100% - 28px),1180px)}.nova-premium-grid{display:block}.nova-premium-card{min-height:0;margin-bottom:14px;padding:25px}.nova-split-layout{grid-template-columns:1fr}.nova-gallery{grid-template-columns:1fr}.nova-gallery img{height:260px}.nova-inline-cta{width:min(calc(100% - 28px),1180px);margin-bottom:58px;padding:30px 25px}.nova-form-grid{grid-template-columns:1fr}.nova-form-wide{grid-column:auto}.nova-form-panel{padding:24px 18px}.nova-post-grid-listing{grid-template-columns:1fr}.nova-article-meta{flex-wrap:wrap}.nova-article-cta{padding:30px 24px}.nova-article-header h1{font-size:clamp(38px,10vw,54px)!important}.nova-article-hero{height:62vw!important;margin-bottom:34px!important}.nova-article-content{font-size:17px!important}.nova-inner-hero-symbol{max-width:300px}}

/* Contact Form 7 inside premium NOVA panels (the exact form from /kontakty/). */
.nova-form-panel .wpcf7{width:100%;color:#fff}
.nova-form-panel .wpcf7-form{display:grid;grid-template-columns:1fr 1fr;gap:16px}
.nova-form-panel .wpcf7-form>p{margin:0;color:#e7edf7}
.nova-form-panel .wpcf7-form>p:has(textarea),
.nova-form-panel .wpcf7-form>p:last-of-type{grid-column:1/-1}
.nova-form-panel .wpcf7 label{display:block;color:#e7edf7;font-size:12px;font-weight:750;line-height:1.4}
.nova-form-panel .wpcf7-form-control-wrap{display:block;margin-top:7px}
.nova-form-panel .wpcf7 input:not([type=checkbox]):not([type=radio]):not([type=submit]),
.nova-form-panel .wpcf7 select,
.nova-form-panel .wpcf7 textarea{width:100%;min-height:48px;padding:13px 15px;border:1px solid rgba(255,255,255,.2);border-radius:10px;background:#fff;color:#14243e;font:inherit;box-shadow:none}
.nova-form-panel .wpcf7 textarea{min-height:150px;resize:vertical}
.nova-form-panel .wpcf7 input[type=submit]{min-height:48px;padding:0 24px;border:0;border-radius:10px;background:var(--nova-blue);color:#fff;font-weight:800;cursor:pointer}
.nova-form-panel .wpcf7-list-item{margin:6px 14px 0 0}
.nova-form-panel .wpcf7-not-valid-tip{margin-top:5px;color:#ffd1d1;font-size:11px}
.nova-form-panel .wpcf7-response-output{grid-column:1/-1;margin:10px 0 0!important;color:#fff;border-radius:10px}
@media(max-width:720px){.nova-form-panel .wpcf7-form{grid-template-columns:1fr}.nova-form-panel .wpcf7-form>p{grid-column:1!important}}
.nova-footer-legal{display:flex;flex-wrap:wrap;justify-content:center;gap:14px}.nova-footer-legal a{color:#c4d0e0;font-size:12px}.nova-footer-legal a:hover{color:#fff}@media(max-width:720px){.nova-footer-bottom{gap:12px;text-align:center}.nova-footer-legal{order:3;width:100%}}

/* =========================================================
   NOVA ASTRA COMPLETE 2.2 — premium contact experience
   Replaces generic numbered cards on /kontakty/ and /de/kontakt/.
   ========================================================= */
.nova-page-content-contact{
  background:#f4f6fa;
}
.nova-contact-experience{
  position:relative;
  padding:88px 0 104px;
  overflow:hidden;
  background:
    radial-gradient(circle at 6% 10%,rgba(34,87,214,.08),transparent 28%),
    linear-gradient(180deg,#f7f9fd 0%,#f1f4f9 100%);
}
.nova-contact-experience:before{
  content:"";
  position:absolute;
  width:560px;
  height:560px;
  right:-330px;
  top:70px;
  border:1px solid rgba(34,87,214,.13);
  border-radius:50%;
  pointer-events:none;
}
.nova-contact-stage{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:minmax(0,.88fr) minmax(520px,1.12fr);
  min-height:660px;
  border-radius:34px;
  overflow:hidden;
  box-shadow:0 36px 90px rgba(14,35,70,.16);
}
.nova-contact-story{
  display:flex;
  flex-direction:column;
  padding:clamp(42px,5.4vw,76px);
  background:
    radial-gradient(circle at 20% 0%,rgba(86,132,255,.20),transparent 34%),
    linear-gradient(145deg,#0b1c38 0%,#10294f 100%);
  color:#dbe5f4;
}
.nova-contact-eyebrow{
  margin:0 0 24px;
  color:#8fb1ff;
  font-size:12px;
  font-weight:850;
  letter-spacing:.14em;
  text-transform:uppercase;
}
.nova-contact-story h2{
  max-width:640px;
  margin:0 0 24px!important;
  color:#fff!important;
  font-size:clamp(42px,4.4vw,64px)!important;
  line-height:1.02!important;
  letter-spacing:-.045em;
  text-wrap:balance;
}
.nova-contact-intro{
  max-width:620px;
  color:#c9d5e7;
  font-size:17px;
  line-height:1.75;
}
.nova-contact-intro p{margin:0}
.nova-contact-channels{
  display:grid;
  gap:12px;
  margin-top:auto;
  padding-top:48px;
}
.nova-contact-channel{
  display:grid;
  grid-template-columns:54px minmax(0,1fr) 28px;
  gap:16px;
  align-items:center;
  min-height:78px;
  padding:12px 16px 12px 12px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:17px;
  background:rgba(255,255,255,.055);
  color:#fff!important;
  text-decoration:none!important;
  transition:transform .2s ease,border-color .2s ease,background .2s ease;
}
.nova-contact-channel:hover{
  transform:translateX(5px);
  border-color:rgba(143,177,255,.55);
  background:rgba(255,255,255,.09);
}
.nova-contact-channel-icon{
  display:grid;
  place-items:center;
  width:54px;
  height:54px;
  border-radius:14px;
  background:#fff;
  color:var(--nova-blue);
}
.nova-contact-channel-icon svg,
.nova-contact-channel-arrow svg,
.nova-contact-fact-icon svg{
  display:block;
  width:23px;
  height:23px;
  fill:currentColor;
}
.nova-contact-channel-copy{
  display:flex;
  flex-direction:column;
  min-width:0;
}
.nova-contact-channel-copy strong{
  color:#fff;
  font-size:16px;
  font-weight:800;
}
.nova-contact-channel-copy small{
  margin-top:3px;
  color:#aebcd2;
  font-size:12px;
}
.nova-contact-channel-arrow{
  display:grid;
  place-items:center;
  color:#8fb1ff;
}
.nova-contact-channel-arrow svg{width:20px;height:20px}
.nova-contact-form-shell{
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:clamp(40px,5vw,72px);
  background:#fff;
}
.nova-contact-form-header{
  max-width:640px;
  margin-bottom:30px;
}
.nova-contact-form-header h3{
  margin:0 0 12px!important;
  color:var(--nova-navy)!important;
  font-size:clamp(34px,3vw,46px)!important;
  line-height:1.08!important;
  letter-spacing:-.035em;
}
.nova-contact-form-header p{
  margin:0;
  color:var(--nova-muted);
  font-size:16px;
  line-height:1.65;
}
.nova-contact-form-premium .wpcf7{width:100%;color:var(--nova-navy)}
.nova-contact-form-premium .wpcf7-form{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:15px;
}
.nova-contact-form-premium .wpcf7-form>p{
  margin:0;
  color:var(--nova-navy);
}
.nova-contact-form-premium .wpcf7-form>p:has(textarea),
.nova-contact-form-premium .wpcf7-form>p:last-of-type{
  grid-column:1/-1;
}
.nova-contact-form-premium label{
  display:block;
  color:#4a5870;
  font-size:12px;
  font-weight:760;
  line-height:1.4;
}
.nova-contact-form-premium .wpcf7-form-control-wrap{
  display:block;
  margin-top:7px;
}
.nova-contact-form-premium input:not([type=checkbox]):not([type=radio]):not([type=submit]),
.nova-contact-form-premium select,
.nova-contact-form-premium textarea{
  width:100%;
  min-height:52px;
  padding:14px 15px;
  border:1px solid #d9e0eb;
  border-radius:12px;
  background:#f8faff;
  color:#14243e;
  font:inherit;
  box-shadow:none;
  transition:border-color .2s ease,box-shadow .2s ease,background .2s ease;
}
.nova-contact-form-premium input:focus,
.nova-contact-form-premium select:focus,
.nova-contact-form-premium textarea:focus{
  outline:none;
  border-color:#8cabf5;
  background:#fff;
  box-shadow:0 0 0 4px rgba(34,87,214,.09);
}
.nova-contact-form-premium textarea{
  min-height:164px;
  resize:vertical;
}
.nova-contact-form-premium input[type=submit]{
  min-height:52px;
  padding:0 27px;
  border:0;
  border-radius:12px;
  background:var(--nova-blue);
  color:#fff;
  font-weight:820;
  cursor:pointer;
  box-shadow:0 12px 30px rgba(34,87,214,.22);
}
.nova-contact-form-premium input[type=submit]:hover{
  transform:translateY(-1px);
  filter:brightness(.96);
}
.nova-contact-form-premium .wpcf7-list-item{margin:6px 14px 0 0}
.nova-contact-form-premium .wpcf7-not-valid-tip{margin-top:5px;color:#b42318;font-size:11px}
.nova-contact-form-premium .wpcf7-response-output{grid-column:1/-1;margin:10px 0 0!important;border-radius:10px}
.nova-contact-facts{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:1fr 1fr;
  width:calc(100% - 84px);
  margin:-34px auto 0;
  border:1px solid #dfe5ef;
  border-radius:22px;
  background:#fff;
  box-shadow:0 24px 60px rgba(14,35,70,.09);
  overflow:hidden;
}
.nova-contact-fact{
  display:grid;
  grid-template-columns:58px minmax(0,1fr);
  gap:18px;
  align-items:center;
  min-height:154px;
  padding:30px 38px;
}
.nova-contact-fact+ .nova-contact-fact{
  border-left:1px solid #e3e8f1;
}
.nova-contact-fact-icon{
  display:grid;
  place-items:center;
  width:58px;
  height:58px;
  border-radius:17px;
  background:linear-gradient(145deg,#eaf1ff,#f8fbff);
  color:var(--nova-blue);
}
.nova-contact-fact-label{
  margin:0 0 7px;
  color:#7a879b;
  font-size:11px;
  font-weight:850;
  letter-spacing:.1em;
  text-transform:uppercase;
}
.nova-contact-fact-value{
  color:var(--nova-navy);
  font-size:21px;
  font-weight:730;
  line-height:1.45;
}
.nova-contact-fact-value p{margin:0}

/* More editorial global cards: quieter, less “template-like”. */
.nova-premium-card{
  position:relative;
  overflow:hidden;
  border-color:#dfe5ef;
  background:linear-gradient(180deg,#fff 0%,#fbfcff 100%);
}
.nova-premium-card:before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  width:100%;
  height:3px;
  background:linear-gradient(90deg,var(--nova-blue),rgba(34,87,214,.12));
  opacity:.72;
}

@media(max-width:1080px){
  .nova-contact-stage{grid-template-columns:1fr;min-height:0}
  .nova-contact-story{min-height:540px}
  .nova-contact-form-shell{padding-top:54px;padding-bottom:64px}
}
@media(max-width:720px){
  .nova-contact-experience{padding:54px 0 70px}
  .nova-contact-stage{border-radius:24px}
  .nova-contact-story{min-height:0;padding:34px 24px 30px}
  .nova-contact-story h2{font-size:clamp(36px,11vw,48px)!important}
  .nova-contact-channels{padding-top:32px}
  .nova-contact-form-shell{padding:36px 22px 40px}
  .nova-contact-form-premium .wpcf7-form{grid-template-columns:1fr}
  .nova-contact-form-premium .wpcf7-form>p{grid-column:1!important}
  .nova-contact-facts{grid-template-columns:1fr;width:calc(100% - 28px);margin-top:18px}
  .nova-contact-fact{min-height:128px;padding:24px}
  .nova-contact-fact+ .nova-contact-fact{border-left:0;border-top:1px solid #e3e8f1}
  .nova-contact-fact-value{font-size:18px}
}


/* =========================================================
   NOVA ASTRA COMPLETE 2.3 — signature contact page
   Full-width editorial contact experience. The generic page
   hero is intentionally removed for contact pages.
   ========================================================= */
.nova-type-contact .nova-inner-hero{display:none!important}
.nova-page-content-contact{width:100%!important;max-width:none!important;margin:0!important;background:#f4f6fa}
.nova-page-content-contact>.nova-contact-experience:first-child{margin-top:0}
.nova-contact-experience{
  position:relative;
  padding:52px 0 112px;
  overflow:hidden;
  background:
    radial-gradient(circle at 86% 8%,rgba(36,88,211,.10),transparent 30%),
    radial-gradient(circle at 4% 78%,rgba(183,139,62,.08),transparent 24%),
    linear-gradient(180deg,#f8fafc 0%,#eef2f7 100%);
}
.nova-contact-experience>.nova-content-inner{
  width:min(calc(100% - 64px),1460px)!important;
  max-width:none!important;
}
.nova-contact-stage{
  grid-template-columns:minmax(0,.92fr) minmax(560px,1.08fr);
  min-height:790px;
  border:1px solid rgba(255,255,255,.76);
  border-radius:38px;
  box-shadow:0 44px 120px rgba(10,28,58,.18);
}
.nova-contact-story{
  position:relative;
  isolation:isolate;
  padding:clamp(48px,5vw,82px);
  background:
    linear-gradient(180deg,rgba(13,31,60,.08),rgba(13,31,60,.70)),
    linear-gradient(145deg,#0a1c37 0%,#112d57 62%,#0c2345 100%);
}
.nova-contact-story:before{
  content:"";
  position:absolute;
  z-index:-1;
  width:430px;height:430px;
  right:-240px;top:-230px;
  border:1px solid rgba(145,177,255,.22);
  border-radius:50%;
}
.nova-contact-story h2{
  max-width:720px;
  font-size:clamp(48px,4.7vw,72px)!important;
  line-height:.99!important;
}
.nova-contact-intro{max-width:660px;font-size:18px;line-height:1.72}
.nova-contact-team-media{
  position:relative;
  min-height:260px;
  margin:34px 0 0;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.16);
  border-radius:25px;
  background:#dce4f0;
  box-shadow:0 24px 54px rgba(0,0,0,.22);
}
.nova-contact-team-media:after{
  content:"";
  position:absolute;inset:0;
  background:linear-gradient(180deg,transparent 42%,rgba(6,18,37,.88) 100%);
  pointer-events:none;
}
.nova-contact-team-image{
  display:block;
  width:100%;height:100%;min-height:260px;
  object-fit:cover;
  object-position:center 24%;
}
.nova-contact-team-media figcaption{
  position:absolute;
  z-index:2;
  left:24px;right:24px;bottom:20px;
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:20px;
  color:#fff;
}
.nova-contact-team-media figcaption span{max-width:320px;font-size:13px;line-height:1.4;color:#d9e4f4}
.nova-contact-team-media figcaption strong{font-size:13px;letter-spacing:.06em;text-transform:uppercase;white-space:nowrap}
.nova-contact-channels{
  grid-template-columns:1fr 1fr;
  gap:14px;
  margin-top:24px;
  padding-top:0;
}
.nova-contact-channel{min-height:84px;background:rgba(255,255,255,.07)}
.nova-contact-form-shell{
  padding:clamp(54px,5.2vw,88px);
  background:
    linear-gradient(180deg,rgba(255,255,255,.98),rgba(249,251,255,.98)),
    #fff;
}
.nova-contact-form-header{margin-bottom:36px}
.nova-contact-form-header h3{font-size:clamp(40px,3.4vw,54px)!important}
.nova-contact-form-header p{max-width:610px;font-size:17px}
.nova-contact-form-premium .wpcf7-form{gap:18px}
.nova-contact-form-premium input:not([type=checkbox]):not([type=radio]):not([type=submit]),
.nova-contact-form-premium select,
.nova-contact-form-premium textarea{
  min-height:58px;
  padding:16px 17px;
  border-radius:14px;
  background:#f6f8fc;
}
.nova-contact-form-premium textarea{min-height:190px}
.nova-contact-form-premium input[type=submit]{min-height:58px;padding:0 32px;border-radius:14px;font-size:15px}
.nova-contact-facts{
  width:calc(100% - 112px);
  max-width:1320px;
  margin:-42px auto 0;
  border-radius:24px;
  box-shadow:0 26px 70px rgba(14,35,70,.11);
}
.nova-contact-fact{min-height:168px;padding:34px 44px}
.nova-contact-fact-label{font-size:12px}
.nova-contact-fact-value{font-size:22px}
@media(max-width:1180px){
  .nova-contact-stage{grid-template-columns:1fr;min-height:0}
  .nova-contact-story{padding-bottom:56px}
  .nova-contact-team-media{max-width:780px}
  .nova-contact-form-shell{padding-top:60px;padding-bottom:72px}
}
@media(max-width:720px){
  .nova-contact-experience{padding:24px 0 70px}
  .nova-contact-experience>.nova-content-inner{width:min(calc(100% - 24px),1460px)!important}
  .nova-contact-stage{border-radius:26px}
  .nova-contact-story{padding:36px 22px 30px}
  .nova-contact-story h2{font-size:clamp(40px,11.4vw,52px)!important}
  .nova-contact-intro{font-size:16px}
  .nova-contact-team-media{min-height:220px;margin-top:28px;border-radius:20px}
  .nova-contact-team-image{min-height:220px;object-position:center 22%}
  .nova-contact-team-media figcaption{left:17px;right:17px;bottom:15px;display:block}
  .nova-contact-team-media figcaption strong{display:block;margin-top:5px}
  .nova-contact-channels{grid-template-columns:1fr;margin-top:14px}
  .nova-contact-form-shell{padding:38px 20px 42px}
  .nova-contact-form-header h3{font-size:36px!important}
  .nova-contact-facts{width:calc(100% - 24px);margin-top:16px}
  .nova-contact-fact{min-height:132px;padding:25px 22px}
}

/* =========================================================
   NOVA ASTRA COMPLETE 2.4 — stable premium contact page
   Dedicated PHP renderer for RU + DE. No migrated contact HTML.
   ========================================================= */
.nova-contact-page-v24{
  width:100%;
  max-width:none;
  overflow:hidden;
  background:#f3f6fb;
}
.nova-contact-v24-hero{
  position:relative;
  padding:72px 0 58px;
  background:
    radial-gradient(circle at 86% 18%,rgba(34,87,214,.10),transparent 28%),
    linear-gradient(180deg,#fbfcff 0%,#f3f6fb 100%);
}
.nova-contact-v24-hero:after{
  content:"";
  position:absolute;
  width:420px;
  height:420px;
  right:-250px;
  bottom:-250px;
  border:1px solid rgba(34,87,214,.11);
  border-radius:50%;
  pointer-events:none;
}
.nova-contact-v24-hero .nova-breadcrumbs{margin-bottom:20px}
.nova-contact-v24-hero h1{
  max-width:900px;
  margin:0 0 18px;
  font-size:clamp(48px,5.1vw,76px);
  line-height:1.02;
  letter-spacing:-.045em;
  text-wrap:balance;
}
.nova-contact-v24-lead{
  max-width:760px;
  margin:0;
  color:#526078;
  font-size:clamp(18px,1.8vw,22px);
  line-height:1.62;
}
.nova-contact-v24-body{padding:0 0 96px}
.nova-contact-v24-stage{
  display:grid;
  grid-template-columns:minmax(360px,.88fr) minmax(0,1.12fr);
  width:100%;
  overflow:hidden;
  border:1px solid rgba(213,221,234,.95);
  border-radius:30px;
  background:#fff;
  box-shadow:0 34px 90px rgba(12,31,58,.14);
}
.nova-contact-v24-story{
  display:flex;
  flex-direction:column;
  min-width:0;
  padding:clamp(42px,4.2vw,68px);
  background:
    radial-gradient(circle at 18% 0%,rgba(93,139,255,.23),transparent 34%),
    linear-gradient(150deg,#081a34 0%,#102d57 100%);
  color:#dbe5f4;
}
.nova-contact-v24-story-copy{max-width:520px}
.nova-contact-v24-overline{
  margin:0 0 18px;
  color:#8fb1ff;
  font-size:11px;
  font-weight:850;
  letter-spacing:.15em;
  text-transform:uppercase;
}
.nova-contact-v24-story h2,
.nova-contact-v24-form h2{
  margin:0;
  text-wrap:balance;
}
.nova-contact-v24-story h2{
  max-width:560px;
  color:#fff;
  font-size:clamp(38px,3.6vw,56px);
  line-height:1.03;
  letter-spacing:-.045em;
}
.nova-contact-v24-story-copy>p:last-child{
  max-width:530px;
  margin:22px 0 0;
  color:#c9d5e7;
  font-size:16px;
  line-height:1.72;
}
.nova-contact-v24-links{
  display:grid;
  gap:12px;
  margin-top:38px;
}
.nova-contact-v24-links>a{
  display:grid;
  grid-template-columns:48px minmax(0,1fr) 24px;
  align-items:center;
  gap:14px;
  min-width:0;
  padding:14px 16px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:16px;
  background:rgba(255,255,255,.07);
  color:#fff;
  transition:.2s ease;
}
.nova-contact-v24-links>a:hover{
  transform:translateX(4px);
  border-color:rgba(143,177,255,.5);
  background:rgba(255,255,255,.11);
}
.nova-contact-v24-icon{
  display:grid;
  place-items:center;
  width:48px;
  height:48px;
  border-radius:14px;
  background:#fff;
  color:var(--nova-blue);
  font-size:20px;
  font-weight:900;
}
.nova-contact-v24-icon svg,
.nova-contact-v24-arrow svg,
.nova-contact-v24-fact-icon svg{
  display:block;
  width:22px;
  height:22px;
  fill:currentColor;
}
.nova-contact-v24-links>a>span:nth-child(2){display:flex;flex-direction:column;min-width:0}
.nova-contact-v24-links strong{font-size:14px;line-height:1.25}
.nova-contact-v24-links small{
  margin-top:4px;
  overflow-wrap:anywhere;
  color:#aebdd2;
  font-size:12px;
}
.nova-contact-v24-arrow{display:grid;place-items:center;color:#8fb1ff}
.nova-contact-v24-note{
  margin:auto 0 0;
  padding-top:32px;
  color:#9fb0c8;
  font-size:12px;
  line-height:1.55;
}
.nova-contact-v24-form{
  min-width:0;
  padding:clamp(42px,4.5vw,72px);
  background:linear-gradient(180deg,#fff 0%,#fbfcff 100%);
}
.nova-contact-v24-form>header{max-width:700px;margin:0 0 30px}
.nova-contact-v24-form h2{
  max-width:680px;
  font-size:clamp(34px,3vw,50px);
  line-height:1.07;
  letter-spacing:-.04em;
}
.nova-contact-v24-form>header>p:last-child{
  max-width:640px;
  margin:15px 0 0;
  color:#667085;
  font-size:15px;
  line-height:1.65;
}
.nova-contact-v24-form-inner,
.nova-contact-v24-form-inner>.wpcf7,
.nova-contact-v24-form-inner>.wpcf7>form{width:100%;max-width:none}
.nova-contact-v24-form-inner .wpcf7-form,
.nova-contact-v24-form-inner .nova-native-form{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}
.nova-contact-v24-form-inner .nova-native-form{display:block}
.nova-contact-v24-form-inner .nova-form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}
.nova-contact-v24-form-inner .nova-form-wide{grid-column:1/-1}
.nova-contact-v24-form-inner .wpcf7-form>p{margin:0;color:#344054}
.nova-contact-v24-form-inner .wpcf7-form>p:has(textarea),
.nova-contact-v24-form-inner .wpcf7-form>p:last-of-type{grid-column:1/-1}
.nova-contact-v24-form-inner label,
.nova-contact-v24-form-inner .nova-form-grid label{
  display:block;
  color:#344054;
  font-size:12px;
  font-weight:750;
  line-height:1.45;
}
.nova-contact-v24-form-inner .wpcf7-form-control-wrap{display:block;margin-top:7px}
.nova-contact-v24-form-inner input:not([type=checkbox]):not([type=radio]):not([type=submit]),
.nova-contact-v24-form-inner select,
.nova-contact-v24-form-inner textarea{
  width:100%;
  min-height:54px;
  padding:14px 16px;
  border:1px solid #d8e0eb;
  border-radius:13px;
  background:#f7f9fc;
  color:#14243e;
  font:inherit;
  box-shadow:none;
}
.nova-contact-v24-form-inner textarea{min-height:170px;resize:vertical}
.nova-contact-v24-form-inner input:focus,
.nova-contact-v24-form-inner select:focus,
.nova-contact-v24-form-inner textarea:focus{
  outline:none;
  border-color:#8cabf5;
  background:#fff;
  box-shadow:0 0 0 4px rgba(34,87,214,.09);
}
.nova-contact-v24-form-inner input[type=submit],
.nova-contact-v24-form-inner button[type=submit]{
  width:auto;
  min-height:54px;
  margin-top:4px;
  padding:0 28px;
  border-radius:13px;
}
.nova-contact-v24-form-inner .nova-form-consent{
  display:flex!important;
  align-items:flex-start;
  gap:10px;
  font-weight:500!important;
}
.nova-contact-v24-form-inner .nova-form-consent input{flex:0 0 auto;width:18px;height:18px;margin-top:2px;accent-color:var(--nova-blue)}
.nova-contact-v24-form-inner .wpcf7-response-output{grid-column:1/-1;margin:10px 0 0!important;border-radius:10px}
.nova-contact-v24-form-inner .wpcf7-not-valid-tip{margin-top:5px;color:#b42318;font-size:11px}
.nova-contact-v24-facts{
  display:grid;
  grid-template-columns:1fr 1fr;
  width:calc(100% - 72px);
  margin:-1px auto 0;
  overflow:hidden;
  border:1px solid #dfe5ef;
  border-top:0;
  border-radius:0 0 24px 24px;
  background:#fff;
  box-shadow:0 24px 60px rgba(14,35,70,.08);
}
.nova-contact-v24-facts article{
  display:grid;
  grid-template-columns:58px minmax(0,1fr);
  align-items:center;
  gap:18px;
  min-width:0;
  padding:28px 36px;
}
.nova-contact-v24-facts article+article{border-left:1px solid #e3e8f1}
.nova-contact-v24-fact-icon{
  display:grid;
  place-items:center;
  width:58px;
  height:58px;
  border-radius:17px;
  background:#edf3ff;
  color:var(--nova-blue);
}
.nova-contact-v24-facts p{
  margin:0 0 5px;
  color:#7a879b;
  font-size:10px;
  font-weight:850;
  letter-spacing:.12em;
}
.nova-contact-v24-facts h3{
  margin:0 0 4px;
  font-size:20px;
  letter-spacing:-.02em;
}
.nova-contact-v24-facts span:last-child{color:#667085;font-size:13px}

@media(max-width:1040px){
  .nova-contact-v24-stage{grid-template-columns:1fr}
  .nova-contact-v24-story{min-height:auto}
  .nova-contact-v24-note{margin-top:28px}
}
@media(max-width:720px){
  .nova-contact-v24-hero{padding:46px 0 36px}
  .nova-contact-v24-hero h1{font-size:42px}
  .nova-contact-v24-body{padding-bottom:64px}
  .nova-contact-v24-stage{border-radius:22px}
  .nova-contact-v24-story,
  .nova-contact-v24-form{padding:32px 22px}
  .nova-contact-v24-story h2{font-size:38px}
  .nova-contact-v24-form h2{font-size:34px}
  .nova-contact-v24-form-inner .wpcf7-form,
  .nova-contact-v24-form-inner .nova-form-grid{grid-template-columns:1fr}
  .nova-contact-v24-form-inner .wpcf7-form>p,
  .nova-contact-v24-form-inner .nova-form-wide{grid-column:1!important}
  .nova-contact-v24-facts{grid-template-columns:1fr;width:calc(100% - 24px);border-radius:0 0 18px 18px}
  .nova-contact-v24-facts article{padding:22px}
  .nova-contact-v24-facts article+article{border-left:0;border-top:1px solid #e3e8f1}
}
@media(max-width:420px){
  .nova-contact-v24-links>a{grid-template-columns:44px minmax(0,1fr) 18px;padding:12px}
  .nova-contact-v24-icon{width:44px;height:44px}
  .nova-contact-v24-facts article{grid-template-columns:50px minmax(0,1fr);gap:14px}
  .nova-contact-v24-fact-icon{width:50px;height:50px}
}

/* =========================================================
   NOVA 2.5 — Premium specialist profiles
   ========================================================= */
.nova-specialist-premium {
  --sp-ink: #091b35;
  --sp-ink-2: #102b50;
  --sp-blue: #2458d6;
  --sp-gold: #c49a57;
  --sp-paper: #fbfaf7;
  overflow: hidden;
  background: #fff;
}
.nova-specialist-premium .nova-shell { width: min(calc(100% - 48px), 1280px); }

.nova-specialist-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 91% 12%, rgba(62,105,211,.20), transparent 31%),
    linear-gradient(128deg, #fbfcff 0%, #f8f5ee 100%);
  border-bottom: 1px solid rgba(216,224,236,.9);
}
.nova-specialist-hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 680px;
  height: 680px;
  right: -290px;
  bottom: -440px;
  border: 1px solid rgba(36,88,214,.14);
  border-radius: 50%;
}
.nova-specialist-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: .20;
  background-image: linear-gradient(rgba(11,31,58,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(11,31,58,.06) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(90deg, transparent, #000 76%, transparent);
}
.nova-specialist-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(410px, .72fr);
  gap: 88px;
  align-items: center;
  min-height: 720px;
  padding-block: 70px 76px;
}
.nova-specialist-hero-copy { max-width: 760px; }
.nova-specialist-hero-copy .nova-breadcrumbs { margin-bottom: 34px; }
.nova-specialist-eyebrow {
  margin: 0 0 18px;
  color: var(--sp-blue);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.nova-specialist-hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--sp-ink);
  font-size: clamp(54px, 6vw, 82px);
  letter-spacing: -.055em;
  text-wrap: balance;
}
.nova-specialist-role {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 22px 0 0 !important;
  color: var(--sp-gold) !important;
  font-size: 14px;
  font-weight: 820;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.nova-specialist-role::before { content: ""; width: 34px; height: 1px; background: currentColor; }
.nova-specialist-lead {
  max-width: 700px;
  margin: 22px 0 0 !important;
  color: #4b5b72 !important;
  font-size: clamp(18px, 1.7vw, 21px);
  line-height: 1.72;
}
.nova-specialist-hero-quote {
  max-width: 680px;
  margin: 30px 0 30px;
  padding: 18px 22px 18px 24px;
  border: 0;
  border-left: 2px solid var(--sp-gold);
  background: rgba(255,255,255,.62);
  box-shadow: 0 12px 34px rgba(14,35,70,.045);
}
.nova-specialist-hero-quote p {
  margin: 0;
  color: #24344c !important;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-style: italic;
  line-height: 1.65;
}
.nova-specialist-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 28px;
  color: #647288;
  font-size: 12px;
  font-weight: 690;
}
.nova-specialist-trust span { display: inline-flex; align-items: center; gap: 7px; }
.nova-specialist-trust span::before { content: ""; width: 7px; height: 7px; border: 2px solid var(--sp-blue); border-radius: 50%; }

.nova-specialist-portrait-wrap {
  position: relative;
  width: min(100%, 510px);
  justify-self: end;
  padding: 18px 0 0 18px;
}
.nova-specialist-portrait-accent {
  position: absolute;
  inset: 0 28px 30px 0;
  border-radius: 34px;
  background: linear-gradient(145deg, var(--sp-ink), var(--sp-ink-2));
  box-shadow: 0 34px 80px rgba(9,27,53,.22);
  transform: translate(-18px, 24px);
}
.nova-specialist-portrait {
  position: relative;
  z-index: 1;
  margin: 0;
  overflow: hidden;
  border: 10px solid rgba(255,255,255,.93);
  border-radius: 32px;
  background: #e7ecf5;
  box-shadow: 0 30px 72px rgba(12,32,66,.16);
}
.nova-specialist-portrait::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  background: linear-gradient(transparent, rgba(5,18,38,.84));
  pointer-events: none;
}
.nova-specialist-portrait-image {
  display: block;
  width: 100%;
  aspect-ratio: 2 / 2.75;
  object-fit: cover;
  object-position: center top;
}
.nova-specialist-portrait figcaption {
  position: absolute;
  z-index: 2;
  left: 28px;
  right: 28px;
  bottom: 24px;
  color: #fff;
}
.nova-specialist-portrait figcaption span,
.nova-specialist-portrait figcaption strong,
.nova-specialist-portrait figcaption small { display: block; }
.nova-specialist-portrait figcaption span { margin-bottom: 8px; color: #aabce2; font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.nova-specialist-portrait figcaption strong { color: #fff; font-size: 24px; line-height: 1.15; }
.nova-specialist-portrait figcaption small { margin-top: 5px; color: #d9e2f1; font-size: 12px; }

.nova-specialist-about { padding-block: 108px; background: #fff; }
.nova-specialist-about-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(360px, .85fr); gap: 90px; align-items: start; }
.nova-specialist-about-copy h2,
.nova-specialist-section-head h2,
.nova-specialist-closing-panel h2,
.nova-specialist-final-cta h2 {
  margin: 0;
  color: var(--sp-ink);
  font-size: clamp(38px, 4.4vw, 58px);
  letter-spacing: -.045em;
  text-wrap: balance;
}
.nova-specialist-about-text { max-width: 760px; margin-top: 28px; }
.nova-specialist-about-text p { margin: 0; color: #45546a; font-size: 17px; line-height: 1.88; }
.nova-specialist-facts { display: grid; gap: 14px; }
.nova-specialist-facts article {
  position: relative;
  overflow: hidden;
  min-height: 145px;
  padding: 28px 30px;
  border: 1px solid #dfe5ee;
  border-radius: 20px;
  background: linear-gradient(135deg, #fff, #f8faff);
  box-shadow: 0 15px 38px rgba(18,45,85,.055);
}
.nova-specialist-facts article::after { content: ""; position: absolute; width: 100px; height: 100px; top: -52px; right: -50px; border: 1px solid rgba(36,88,214,.16); border-radius: 50%; }
.nova-specialist-facts strong { display: block; color: var(--sp-blue); font-size: 29px; line-height: 1.1; letter-spacing: -.03em; }
.nova-specialist-facts p { max-width: 330px; margin: 12px 0 0; color: #5b687a; font-size: 14px; line-height: 1.55; }

.nova-specialist-expertise { padding-block: 108px 116px; background: var(--sp-paper); border-block: 1px solid #ece8df; }
.nova-specialist-section-head { display: grid; grid-template-columns: 1fr minmax(350px, 520px); gap: 60px; align-items: end; margin-bottom: 48px; }
.nova-specialist-section-head > p { margin: 0; color: #607087; font-size: 16px; line-height: 1.75; }
.nova-specialist-expertise-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.nova-specialist-expertise-card {
  position: relative;
  min-height: 310px;
  padding: 34px 36px 36px;
  overflow: hidden;
  border: 1px solid #dcdfe6;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(18,43,82,.055);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.nova-specialist-expertise-card::after { content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 4px; background: linear-gradient(90deg, var(--sp-blue), var(--sp-gold)); transform: scaleX(.24); transform-origin: left; transition: transform .25s ease; }
.nova-specialist-expertise-card:hover { transform: translateY(-6px); border-color: #bfcce3; box-shadow: 0 28px 62px rgba(15,40,80,.10); }
.nova-specialist-expertise-card:hover::after { transform: scaleX(1); }
.nova-specialist-expertise-icon { display: grid; place-items: center; width: 58px; height: 58px; margin-bottom: 34px; border: 1px solid #d9e3f7; border-radius: 18px; background: #f3f7ff; color: var(--sp-blue); }
.nova-specialist-expertise-icon svg { width: 31px; height: 31px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.nova-specialist-expertise-subtitle { margin: 0 0 9px !important; color: var(--sp-gold) !important; font-size: 11px !important; font-weight: 820; letter-spacing: .1em; text-transform: uppercase; }
.nova-specialist-expertise-card h3 { margin: 0 0 16px; color: var(--sp-ink); font-size: 27px; letter-spacing: -.035em; }
.nova-specialist-expertise-card > p:last-child { margin: 0; color: #59687d; font-size: 15px; line-height: 1.72; }

.nova-specialist-closing { padding-block: 98px; background: #fff; }
.nova-specialist-closing-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 70px;
  align-items: center;
  overflow: hidden;
  padding: 58px 64px;
  border-radius: 30px;
  background: linear-gradient(135deg, #0a1d39, #13315a);
  color: #fff;
  box-shadow: 0 30px 80px rgba(9,29,57,.18);
}
.nova-specialist-closing-panel::before { content: ""; position: absolute; width: 330px; height: 330px; right: -130px; top: -190px; border: 1px solid rgba(255,255,255,.13); border-radius: 50%; }
.nova-specialist-closing-panel .nova-kicker { color: #9eb8eb; }
.nova-specialist-closing-panel h2 { color: #fff; max-width: 760px; }
.nova-specialist-closing-panel p:not(.nova-kicker) { max-width: 850px; margin: 20px 0 0; color: #d0dbea; font-size: 17px; line-height: 1.75; }
.nova-specialist-light-button { position: relative; z-index: 1; min-width: 235px; border-color: #fff; background: #fff; color: var(--sp-ink) !important; }
.nova-specialist-light-button:hover { background: #eef3fb; color: var(--sp-ink) !important; }

.nova-specialist-team { padding-block: 105px; background: #f7f9fd; }
.nova-specialist-team-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.nova-specialist-team-card {
  display: grid;
  grid-template-columns: 155px 1fr;
  min-height: 210px;
  overflow: hidden;
  border: 1px solid #dfe5ee;
  border-radius: 23px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(15,40,80,.055);
  transition: transform .22s ease, box-shadow .22s ease;
}
.nova-specialist-team-card:hover { transform: translateY(-5px); box-shadow: 0 28px 60px rgba(15,40,80,.10); }
.nova-specialist-team-photo { overflow: hidden; background: #e9eef6; }
.nova-specialist-team-photo img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.nova-specialist-team-copy { display: flex; flex-direction: column; justify-content: center; padding: 28px 30px; }
.nova-specialist-team-copy strong { color: var(--sp-ink); font-size: 24px; letter-spacing: -.025em; }
.nova-specialist-team-copy small { margin-top: 7px; color: #6a7689; font-size: 13px; }
.nova-specialist-team-copy em { margin-top: 24px; color: var(--sp-blue); font-size: 13px; font-style: normal; font-weight: 780; }

.nova-specialist-final-cta { padding-block: 0 110px; background: #f7f9fd; }
.nova-specialist-final-cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 70px;
  align-items: center;
  padding: 50px 58px;
  border: 1px solid #d9e2f1;
  border-radius: 27px;
  background: #fff;
  box-shadow: 0 22px 58px rgba(15,40,80,.07);
}
.nova-specialist-final-cta h2 { font-size: clamp(34px, 3.7vw, 50px); }
.nova-specialist-final-cta p:not(.nova-kicker) { max-width: 760px; margin: 16px 0 0; color: #5e6c80; font-size: 16px; }

@media (max-width: 1060px) {
  .nova-specialist-hero-grid { grid-template-columns: minmax(0, 1fr) 390px; gap: 48px; min-height: 650px; }
  .nova-specialist-about-grid { gap: 55px; }
  .nova-specialist-closing-panel { grid-template-columns: 1fr; gap: 34px; }
  .nova-specialist-light-button { justify-self: start; }
}

@media (max-width: 820px) {
  .nova-specialist-premium .nova-shell { width: min(calc(100% - 34px), 720px); }
  .nova-specialist-hero-grid { grid-template-columns: 1fr; gap: 44px; min-height: 0; padding-block: 48px 64px; }
  .nova-specialist-hero h1 { font-size: clamp(48px, 12vw, 68px); }
  .nova-specialist-portrait-wrap { width: min(100%, 520px); justify-self: center; }
  .nova-specialist-about-grid { grid-template-columns: 1fr; gap: 48px; }
  .nova-specialist-section-head { grid-template-columns: 1fr; gap: 22px; }
  .nova-specialist-expertise-grid { grid-template-columns: 1fr; }
  .nova-specialist-team-grid { grid-template-columns: 1fr; }
  .nova-specialist-final-cta-inner { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 560px) {
  .nova-specialist-premium .nova-shell { width: min(calc(100% - 26px), 520px); }
  .nova-specialist-hero-grid { padding-block: 38px 48px; }
  .nova-specialist-hero-copy .nova-breadcrumbs { margin-bottom: 24px; }
  .nova-specialist-hero h1 { font-size: clamp(42px, 13vw, 58px); }
  .nova-specialist-role { margin-top: 16px !important; }
  .nova-specialist-lead { font-size: 17px; }
  .nova-specialist-hero-quote { margin-block: 24px; padding: 16px 16px 16px 18px; }
  .nova-specialist-hero-quote p { font-size: 16px; }
  .nova-specialist-trust { display: grid; gap: 10px; }
  .nova-specialist-portrait-wrap { padding: 10px 0 0 10px; }
  .nova-specialist-portrait { border-width: 6px; border-radius: 24px; }
  .nova-specialist-portrait-accent { border-radius: 25px; }
  .nova-specialist-portrait figcaption { left: 20px; right: 20px; bottom: 18px; }
  .nova-specialist-about,
  .nova-specialist-expertise,
  .nova-specialist-team { padding-block: 72px; }
  .nova-specialist-closing { padding-block: 68px; }
  .nova-specialist-about-copy h2,
  .nova-specialist-section-head h2,
  .nova-specialist-closing-panel h2 { font-size: 37px; }
  .nova-specialist-facts article { min-height: 0; padding: 24px; }
  .nova-specialist-expertise-card { min-height: 0; padding: 28px 25px 31px; }
  .nova-specialist-closing-panel { padding: 37px 28px; border-radius: 23px; }
  .nova-specialist-team-card { grid-template-columns: 115px 1fr; min-height: 170px; }
  .nova-specialist-team-copy { padding: 22px 20px; }
  .nova-specialist-team-copy strong { font-size: 20px; }
  .nova-specialist-final-cta { padding-bottom: 72px; }
  .nova-specialist-final-cta-inner { padding: 34px 28px; }
}


/* v2.6.0 — complete language navigation on mobile and clickable footer languages. */
.nova-mobile-nav-footer { display: none; }
.nova-footer-language-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nova-footer-language-label {
  color: #8fa1ba;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.nova-language-footer {
  border-color: rgba(255,255,255,.18);
  background: rgba(255,255,255,.04);
}
.nova-language-footer a {
  min-width: 74px;
  padding: 8px 11px;
  color: #c7d2e2;
  text-align: center;
}
.nova-language-footer a:hover,
.nova-language-footer a:focus-visible {
  color: #fff;
  background: rgba(255,255,255,.08);
}
.nova-language-footer a.is-active {
  background: #fff;
  color: #0b1d3a;
}

@media (max-width: 1080px) {
  .nova-mobile-nav-footer {
    display: block;
    width: min(100%, 720px);
    margin: 22px auto 0;
    padding: 22px 4px 8px;
    border-top: 1px solid var(--nova-border);
  }
  .nova-mobile-language-title {
    display: block;
    margin-bottom: 10px;
    color: #6b7890;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
  }
  .nova-language-mobile {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    border-radius: 14px;
    background: #f5f8ff;
  }
  .nova-language-mobile a {
    display: flex !important;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 10px 14px !important;
    color: #44516a;
    font-size: 14px;
  }
  .nova-language-mobile a.is-active {
    background: var(--nova-blue);
    color: #fff;
  }
}

@media (max-width: 720px) {
  .nova-footer-language-wrap {
    width: 100%;
    flex-direction: column;
    align-items: center;
  }
  .nova-language-footer {
    width: min(100%, 270px);
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .nova-language-footer a { min-width: 0; }
}

/* =========================================================
   v2.8.0 — premium legal services page
   ========================================================= */
.nova-legal-premium {
  --legal-ink: #0b1d3a;
  --legal-blue: #2d5ce5;
  --legal-blue-2: #173ca7;
  --legal-gold: #c6a15b;
  --legal-paper: #f5f7fb;
  --legal-cream: #f5f1e8;
  --legal-line: #dbe3ef;
  color: var(--legal-ink);
  overflow: hidden;
}
.nova-legal-premium .nova-shell { width: min(calc(100% - 48px), 1260px); }
.nova-legal-premium h1,
.nova-legal-premium h2,
.nova-legal-premium h3 { margin-top: 0; }
.nova-legal-premium p { color: #526079; }
.nova-legal-kicker {
  margin: 0 0 16px;
  color: var(--legal-blue);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.nova-legal-kicker-light { color: #8fb0ff; }

/* Hero */
.nova-legal-hero {
  position: relative;
  isolation: isolate;
  min-height: 720px;
  background:
    radial-gradient(circle at 78% 22%, rgba(74,111,219,.32), transparent 28%),
    linear-gradient(125deg, #07162c 0%, #0d2345 58%, #122b50 100%);
  color: #fff;
}
.nova-legal-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .14;
  background-image:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to right, #000, transparent 78%);
}
.nova-legal-hero-orb {
  position: absolute;
  right: -190px;
  bottom: -300px;
  width: 720px;
  height: 720px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 50%;
}
.nova-legal-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, .92fr);
  gap: 78px;
  align-items: center;
  min-height: 720px;
  padding-block: 76px 82px;
}
.nova-legal-hero-copy { max-width: 720px; }
.nova-legal-hero .nova-breadcrumbs { margin-bottom: 36px; color: rgba(255,255,255,.58); }
.nova-legal-hero .nova-breadcrumbs a:hover { color: #fff; }
.nova-legal-hero h1 {
  max-width: 760px;
  margin: 0;
  color: #fff;
  font-size: clamp(48px, 5.4vw, 76px);
  line-height: 1.01;
  letter-spacing: -.055em;
  text-wrap: balance;
}
.nova-legal-lead {
  max-width: 720px;
  margin: 28px 0 0;
  color: #d9e4f3 !important;
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.7;
}
.nova-legal-actions { margin-top: 34px; }
.nova-legal-primary {
  min-height: 54px;
  padding-inline: 25px;
  border-color: #fff;
  background: #fff;
  color: var(--legal-ink) !important;
  box-shadow: 0 18px 38px rgba(0,0,0,.19);
}
.nova-legal-primary:hover { background: #edf2ff; color: var(--legal-ink) !important; }
.nova-legal-primary svg,
.nova-legal-profile-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}
.nova-legal-secondary {
  min-height: 54px;
  border-color: rgba(255,255,255,.28);
  background: rgba(255,255,255,.05);
  color: #fff !important;
  backdrop-filter: blur(8px);
}
.nova-legal-secondary:hover { background: rgba(255,255,255,.12); color: #fff !important; }
.nova-legal-note {
  margin: 28px 0 0;
  color: #9fb0c9 !important;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .025em;
}
.nova-legal-hero-visual {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.nova-legal-portrait-frame {
  position: absolute;
  inset: 0 26px 42px 78px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 34px 34px 120px 34px;
  background: linear-gradient(160deg, rgba(255,255,255,.14), rgba(255,255,255,.03));
  box-shadow: 0 44px 90px rgba(0,0,0,.26);
}
.nova-legal-portrait-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,18,39,.42), transparent 55%);
  pointer-events: none;
}
.nova-legal-portrait {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 16%;
}
.nova-legal-person-card {
  position: relative;
  z-index: 2;
  width: min(390px, 88%);
  margin: 0 0 4px auto;
  padding: 24px 28px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 18px;
  background: rgba(6,20,43,.86);
  box-shadow: 0 24px 58px rgba(0,0,0,.24);
  backdrop-filter: blur(18px);
}
.nova-legal-person-card > span {
  color: #95b2ff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.nova-legal-person-card strong {
  display: block;
  margin-top: 5px;
  color: #fff;
  font-size: 23px;
  letter-spacing: -.025em;
}
.nova-legal-person-card p {
  margin: 12px 0 0;
  color: #c9d5e6 !important;
  font-size: 14px;
  line-height: 1.55;
}

/* Intro and practice areas */
.nova-legal-intro { padding-block: 108px 118px; background: #fff; }
.nova-legal-section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 520px);
  gap: 72px;
  align-items: end;
  margin-bottom: 50px;
}
.nova-legal-section-head h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(38px, 4.3vw, 58px);
  line-height: 1.05;
  letter-spacing: -.048em;
  text-wrap: balance;
}
.nova-legal-section-head > p {
  margin: 0 0 4px;
  font-size: 17px;
  line-height: 1.78;
}
.nova-legal-area-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 22px;
}
.nova-legal-area-card {
  position: relative;
  grid-column: span 4;
  display: flex;
  flex-direction: column;
  min-height: 520px;
  padding: 32px;
  overflow: hidden;
  border: 1px solid var(--legal-line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(13,37,78,.06);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.nova-legal-area-card:hover {
  transform: translateY(-5px);
  border-color: #c5d1e5;
  box-shadow: 0 28px 70px rgba(13,37,78,.11);
}
.nova-legal-area-large { grid-column: span 6; min-height: 560px; }
.nova-legal-area-family {
  background:
    linear-gradient(145deg, rgba(255,255,255,.96), rgba(245,248,255,.96)),
    #fff;
}
.nova-legal-area-inheritance {
  background:
    linear-gradient(145deg, rgba(255,255,255,.97), rgba(250,247,240,.97)),
    #fff;
}
.nova-legal-area-migration {
  grid-column: span 4;
  color: #fff;
  border-color: transparent;
  background: linear-gradient(145deg, #0b1e3b, #17335d);
}
.nova-legal-area-migration h3,
.nova-legal-area-migration .nova-legal-area-index { color: #fff; }
.nova-legal-area-migration .nova-legal-area-intro,
.nova-legal-area-migration .nova-legal-list li,
.nova-legal-area-migration .nova-legal-result p { color: #cfdbeb !important; }
.nova-legal-area-migration .nova-legal-area-icon { background: rgba(255,255,255,.1); color: #fff; }
.nova-legal-area-migration .nova-legal-result { border-color: rgba(255,255,255,.14); background: rgba(255,255,255,.05); }
.nova-legal-area-top { display: flex; align-items: center; justify-content: space-between; }
.nova-legal-area-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: #edf3ff;
  color: var(--legal-blue);
}
.nova-legal-area-icon svg { width: 26px; height: 26px; fill: currentColor; }
.nova-legal-area-index {
  color: #a5b0c2;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .08em;
}
.nova-legal-area-card h3 {
  margin: 28px 0 12px;
  font-size: clamp(26px, 2.2vw, 34px);
  line-height: 1.12;
  letter-spacing: -.038em;
}
.nova-legal-area-intro {
  margin: 0 0 22px;
  color: #627086 !important;
  line-height: 1.7;
}
.nova-legal-list { margin: 0; padding: 0; list-style: none; }
.nova-legal-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  margin: 0;
  padding: 9px 0;
  color: #35435a;
  font-size: 14px;
  line-height: 1.55;
}
.nova-legal-list li span {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  border-radius: 50%;
  background: #edf3ff;
  color: var(--legal-blue);
}
.nova-legal-list li svg { width: 13px; height: 13px; fill: currentColor; }
.nova-legal-result {
  margin-top: auto;
  padding: 18px 19px;
  border: 1px solid #e2e7ef;
  border-radius: 15px;
  background: #f8faff;
}
.nova-legal-result span {
  display: block;
  margin-bottom: 5px;
  color: var(--legal-blue);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.nova-legal-result p { margin: 0; color: #3f4d63 !important; font-size: 14px; line-height: 1.55; }

/* Process */
.nova-legal-process { padding-block: 110px; background: #091a35; color: #fff; }
.nova-legal-process-layout {
  display: grid;
  grid-template-columns: minmax(300px, .76fr) minmax(0, 1.24fr);
  gap: 86px;
  align-items: start;
}
.nova-legal-process-copy { position: sticky; top: 135px; }
.nova-legal-process-copy h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(38px, 4.2vw, 56px);
  line-height: 1.04;
  letter-spacing: -.047em;
}
.nova-legal-process-copy > p:last-child {
  margin: 24px 0 0;
  color: #becbde;
  font-size: 17px;
  line-height: 1.75;
}
.nova-legal-steps { border-top: 1px solid rgba(255,255,255,.14); }
.nova-legal-steps article {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  padding: 30px 0;
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.nova-legal-step-number {
  color: #7da3ff;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .08em;
}
.nova-legal-steps h3 { margin: 0; color: #fff; font-size: 25px; letter-spacing: -.028em; }
.nova-legal-steps p { margin: 10px 0 0; color: #b8c6d9 !important; line-height: 1.65; }

/* Lawyer */
.nova-legal-lawyer { padding-block: 116px; background: var(--legal-paper); }
.nova-legal-lawyer-grid {
  display: grid;
  grid-template-columns: minmax(360px, .88fr) minmax(0, 1.12fr);
  gap: 86px;
  align-items: center;
}
.nova-legal-lawyer-photo {
  position: relative;
  overflow: hidden;
  min-height: 690px;
  border-radius: 30px;
  background: #dbe3ef;
  box-shadow: 0 32px 78px rgba(17,42,82,.14);
}
.nova-legal-lawyer-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,20,43,.68), transparent 55%);
}
.nova-legal-lawyer-image { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.nova-legal-lawyer-caption {
  position: absolute;
  z-index: 2;
  left: 30px;
  right: 30px;
  bottom: 28px;
}
.nova-legal-lawyer-caption span { display: block; color: #9eb8f8; font-size: 11px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.nova-legal-lawyer-caption strong { display: block; margin-top: 4px; color: #fff; font-size: 31px; letter-spacing: -.035em; }
.nova-legal-lawyer-copy h2 {
  margin: 0;
  font-size: clamp(44px, 5vw, 68px);
  line-height: 1.02;
  letter-spacing: -.052em;
}
.nova-legal-lawyer-copy blockquote {
  margin: 28px 0 0;
  padding: 24px 28px;
  border-left: 3px solid var(--legal-gold);
  background: #fff;
  color: #24334c;
  font-size: 20px;
  line-height: 1.55;
  box-shadow: 0 16px 40px rgba(17,42,82,.06);
}
.nova-legal-lawyer-text { margin: 26px 0 0; font-size: 17px; line-height: 1.8; }
.nova-legal-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}
.nova-legal-facts article {
  min-height: 145px;
  padding: 21px;
  border: 1px solid #d8e0eb;
  border-radius: 18px;
  background: #fff;
}
.nova-legal-facts strong {
  display: block;
  color: var(--legal-blue);
  font-size: 23px;
  line-height: 1.1;
  letter-spacing: -.03em;
}
.nova-legal-facts span { display: block; margin-top: 11px; color: #66748a; font-size: 12px; line-height: 1.5; }
.nova-legal-profile-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  color: var(--legal-blue);
  font-weight: 800;
}
.nova-legal-profile-link:hover { color: var(--legal-blue-2); }

/* Scope */
.nova-legal-scope { padding-block: 0 108px; background: var(--legal-paper); }
.nova-legal-scope-panel {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  align-items: start;
  padding: 34px 38px;
  border: 1px solid #decfae;
  border-radius: 22px;
  background: #faf6ed;
}
.nova-legal-scope-mark {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #d0aa66;
  color: #fff;
  font-size: 25px;
  font-weight: 850;
}
.nova-legal-scope h2 { margin: 0; font-size: 29px; }
.nova-legal-scope p { margin: 10px 0 0; color: #625b4c !important; line-height: 1.7; }

/* Contact */
.nova-legal-contact { padding-block: 104px; background: #fff; }
.nova-legal-contact-panel {
  display: grid;
  grid-template-columns: minmax(300px, .82fr) minmax(0, 1.18fr);
  gap: 72px;
  padding: 62px;
  border-radius: 30px;
  background: linear-gradient(145deg, #081a35, #102c55);
  box-shadow: 0 34px 84px rgba(9,31,65,.18);
}
.nova-legal-contact-copy h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(40px, 4.6vw, 60px);
  line-height: 1.04;
  letter-spacing: -.05em;
}
.nova-legal-contact-copy > p:not(.nova-legal-kicker) { margin: 24px 0 0; color: #c6d3e5 !important; font-size: 17px; line-height: 1.75; }
.nova-legal-contact-points { display: grid; gap: 12px; margin-top: 32px; }
.nova-legal-contact-points span { position: relative; padding-left: 21px; color: #e6edf8; font-size: 13px; }
.nova-legal-contact-points span::before { content: ""; position: absolute; left: 0; top: .62em; width: 7px; height: 7px; border-radius: 50%; background: #78a1ff; }
.nova-legal-form-wrap {
  padding: 34px;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(0,0,0,.16);
}
.nova-legal-form-wrap .wpcf7-form,
.nova-legal-form-wrap .nova-native-form { color: var(--legal-ink); }
.nova-legal-form-wrap .wpcf7-form { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.nova-legal-form-wrap .wpcf7-form > p { margin: 0; color: #44516a; }
.nova-legal-form-wrap .wpcf7-form > p:has(textarea),
.nova-legal-form-wrap .wpcf7-form > p:last-of-type { grid-column: 1 / -1; }
.nova-legal-form-wrap label { color: #334158; font-size: 12px; font-weight: 700; }
.nova-legal-form-wrap input,
.nova-legal-form-wrap select,
.nova-legal-form-wrap textarea { border-radius: 12px !important; background: #f8faff !important; }
.nova-legal-form-wrap button,
.nova-legal-form-wrap input[type="submit"] { width: 100%; min-height: 52px; }

@media (max-width: 1080px) {
  .nova-legal-hero-grid { grid-template-columns: 1fr 410px; gap: 45px; }
  .nova-legal-portrait-frame { left: 30px; }
  .nova-legal-area-card { grid-column: span 6; }
  .nova-legal-area-migration { grid-column: span 12; min-height: 0; }
  .nova-legal-process-layout,
  .nova-legal-lawyer-grid,
  .nova-legal-contact-panel { gap: 52px; }
  .nova-legal-facts { grid-template-columns: 1fr; }
  .nova-legal-facts article { min-height: 0; }
}

@media (max-width: 860px) {
  .nova-legal-premium .nova-shell { width: min(calc(100% - 34px), 760px); }
  .nova-legal-hero { min-height: 0; }
  .nova-legal-hero-grid,
  .nova-legal-process-layout,
  .nova-legal-lawyer-grid,
  .nova-legal-contact-panel { grid-template-columns: 1fr; }
  .nova-legal-hero-grid { min-height: 0; padding-block: 58px 72px; }
  .nova-legal-hero-copy { max-width: 100%; }
  .nova-legal-hero-visual { min-height: 610px; max-width: 600px; width: 100%; margin-inline: auto; }
  .nova-legal-portrait-frame { inset: 0 20px 46px 20px; }
  .nova-legal-person-card { margin-right: 0; }
  .nova-legal-section-head { grid-template-columns: 1fr; gap: 22px; }
  .nova-legal-area-card,
  .nova-legal-area-large,
  .nova-legal-area-migration { grid-column: span 12; min-height: 0; }
  .nova-legal-process-copy { position: static; }
  .nova-legal-lawyer-photo { min-height: 720px; }
  .nova-legal-contact-panel { padding: 48px; }
}

@media (max-width: 560px) {
  .nova-legal-premium .nova-shell { width: min(calc(100% - 24px), 520px); }
  .nova-legal-hero-grid { padding-block: 38px 54px; }
  .nova-legal-hero .nova-breadcrumbs { margin-bottom: 25px; }
  .nova-legal-hero h1 { font-size: clamp(43px, 13.2vw, 58px); }
  .nova-legal-lead { margin-top: 22px; font-size: 17px; }
  .nova-legal-actions { display: grid; }
  .nova-legal-actions .nova-button { width: 100%; }
  .nova-legal-note { font-size: 12px; line-height: 1.55; }
  .nova-legal-hero-visual { min-height: 510px; }
  .nova-legal-portrait-frame { inset: 0 0 42px 0; border-radius: 24px 24px 70px 24px; }
  .nova-legal-person-card { width: calc(100% - 18px); padding: 19px 20px; }
  .nova-legal-intro,
  .nova-legal-process,
  .nova-legal-lawyer,
  .nova-legal-contact { padding-block: 74px; }
  .nova-legal-scope { padding-bottom: 74px; }
  .nova-legal-section-head h2,
  .nova-legal-process-copy h2,
  .nova-legal-lawyer-copy h2,
  .nova-legal-contact-copy h2 { font-size: 39px; }
  .nova-legal-area-grid { gap: 16px; }
  .nova-legal-area-card { padding: 26px 23px; border-radius: 20px; }
  .nova-legal-area-card h3 { font-size: 28px; }
  .nova-legal-steps article { grid-template-columns: 48px 1fr; gap: 14px; padding: 24px 0; }
  .nova-legal-lawyer-photo { min-height: 570px; border-radius: 24px; }
  .nova-legal-lawyer-caption { left: 20px; right: 20px; bottom: 20px; }
  .nova-legal-lawyer-caption strong { font-size: 26px; }
  .nova-legal-lawyer-copy blockquote { padding: 20px 21px; font-size: 18px; }
  .nova-legal-facts { grid-template-columns: 1fr; }
  .nova-legal-scope-panel { grid-template-columns: 1fr; padding: 28px 25px; }
  .nova-legal-contact-panel { padding: 34px 24px; border-radius: 24px; }
  .nova-legal-form-wrap { padding: 24px 20px; }
  .nova-legal-form-wrap .wpcf7-form { grid-template-columns: 1fr; }
  .nova-legal-form-wrap .wpcf7-form > p { grid-column: 1 !important; }
}

/* =========================================================
   NOVA 2.9 — PREMIUM PSYCHOLOGY HUB & PROGRAM SYSTEM
   ========================================================= */
.nova-psychology-premium {
  --psy-ink: #0c1d38;
  --psy-blue: #315be0;
  --psy-blue-deep: #173d9f;
  --psy-ice: #f2f6ff;
  --psy-lilac: #eee9f8;
  --psy-cream: #faf6ef;
  --psy-gold: #c7a56b;
  --psy-muted: #5d6b82;
  --psy-line: rgba(20,45,86,.13);
  color: var(--psy-ink);
  overflow: hidden;
  background: #fff;
}
.nova-psychology-premium .nova-shell { width: min(calc(100% - 48px), 1240px); margin-inline: auto; }
.nova-psychology-premium h1,
.nova-psychology-premium h2,
.nova-psychology-premium h3 { color: var(--psy-ink); letter-spacing: -.035em; }
.nova-psychology-premium p { color: var(--psy-muted); }
.nova-psychology-premium svg { width: 1em; height: 1em; fill: currentColor; flex: 0 0 auto; }
.nova-psy-kicker {
  margin: 0 0 17px;
  color: var(--psy-blue) !important;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.nova-psy-kicker-light { color: #9eb8ff !important; }
.nova-psy-primary { gap: 10px; }
.nova-psy-primary svg,
.nova-psy-final-button svg,
.nova-psy-format-button svg { width: 18px; height: 18px; }

/* Hub hero */
.nova-psy-hub-hero {
  position: relative;
  min-height: 740px;
  isolation: isolate;
  background:
    radial-gradient(circle at 83% 18%, rgba(77,112,225,.18), transparent 31%),
    radial-gradient(circle at 18% 82%, rgba(219,190,146,.17), transparent 27%),
    linear-gradient(135deg, #fbfcff 0%, #f5f7fc 57%, #f8f3eb 100%);
}
.nova-psy-orb {
  position: absolute;
  right: -220px;
  bottom: -290px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(49,91,224,.14);
  border-radius: 50%;
  z-index: -1;
}
.nova-psy-hub-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(480px, .98fr);
  gap: 74px;
  align-items: center;
  min-height: 740px;
  padding-block: 82px 74px;
}
.nova-psy-hub-copy { max-width: 670px; }
.nova-psy-hub-copy .nova-breadcrumbs { margin-bottom: 28px; }
.nova-psy-hub-copy h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(54px, 5.6vw, 82px);
  line-height: .99;
  letter-spacing: -.06em;
}
.nova-psy-lead {
  max-width: 690px;
  margin: 27px 0 0;
  color: #56657e !important;
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.65;
}
.nova-psy-hub-copy .nova-actions { margin-top: 34px; }
.nova-psy-trust { display: flex; flex-wrap: wrap; gap: 13px 24px; margin-top: 31px; }
.nova-psy-trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #4d5d76;
  font-size: 13px;
  font-weight: 720;
}
.nova-psy-trust svg { color: var(--psy-blue); width: 16px; height: 16px; }
.nova-psy-team-visual { position: relative; min-height: 585px; }
.nova-psy-portrait {
  position: absolute;
  overflow: hidden;
  border: 7px solid rgba(255,255,255,.92);
  border-radius: 30px;
  background: #e9eef8;
  box-shadow: 0 32px 85px rgba(16,38,75,.16);
  color: #fff;
  transition: transform .28s ease, box-shadow .28s ease;
}
.nova-psy-portrait:hover { transform: translateY(-5px); box-shadow: 0 38px 95px rgba(16,38,75,.22); }
.nova-psy-portrait img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.nova-psy-portrait > span {
  position: absolute;
  left: 17px;
  right: 17px;
  bottom: 17px;
  padding: 16px 18px;
  border-radius: 15px;
  background: rgba(9,28,58,.87);
  backdrop-filter: blur(14px);
}
.nova-psy-portrait strong { display: block; color: #fff; font-size: 18px; }
.nova-psy-portrait small { display: block; margin-top: 3px; color: #d9e4f6; font-size: 12px; }
.nova-psy-portrait-anna { left: 0; top: 77px; width: 49%; height: 430px; z-index: 2; }
.nova-psy-portrait-maria { right: 0; top: 0; width: 57%; height: 505px; z-index: 1; }
.nova-psy-visual-note {
  position: absolute;
  right: 8px;
  bottom: 13px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 13px;
  max-width: 320px;
  padding: 17px 20px;
  border: 1px solid rgba(23,55,106,.09);
  border-radius: 18px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 24px 55px rgba(20,42,81,.15);
  color: var(--psy-ink);
  font-size: 13px;
  font-weight: 760;
  line-height: 1.45;
}
.nova-psy-visual-note svg { width: 27px; height: 27px; color: var(--psy-gold); }

/* Editorial intro */
.nova-psy-intro { padding: 88px 0 48px; background: #fff; }
.nova-psy-intro-grid {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 68px;
  align-items: start;
  padding-bottom: 52px;
  border-bottom: 1px solid var(--psy-line);
}
.nova-psy-intro-grid h2 {
  max-width: 840px;
  margin: 0;
  font-size: clamp(39px, 4.4vw, 62px);
  line-height: 1.05;
  letter-spacing: -.055em;
}
.nova-psy-intro-grid > div > p { max-width: 760px; margin: 25px 0 0; font-size: 18px; line-height: 1.75; }

/* Program catalogue */
.nova-psy-programs { padding: 45px 0 104px; background: #fff; }
.nova-psy-program-group + .nova-psy-program-group { margin-top: 90px; }
.nova-psy-program-head {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  margin-bottom: 30px;
}
.nova-psy-program-icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 18px;
  background: var(--psy-ice);
  color: var(--psy-blue);
}
.nova-psy-program-group-family .nova-psy-program-icon { background: #f4ecf8; color: #7657a3; }
.nova-psy-program-group-group .nova-psy-program-icon { background: #f8f1e6; color: #9b7140; }
.nova-psy-program-icon svg { width: 29px; height: 29px; }
.nova-psy-program-head p { margin: 1px 0 4px; color: var(--psy-blue) !important; font-size: 11px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.nova-psy-program-head h2 { margin: 0; font-size: clamp(34px, 3.2vw, 47px); line-height: 1.08; }
.nova-psy-program-head span:not(.nova-psy-program-icon) { display: block; max-width: 720px; margin-top: 9px; color: #68758a; font-size: 15px; line-height: 1.6; }
.nova-psy-program-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 20px; }
.nova-psy-program-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 300px;
  padding: 29px 28px 25px;
  overflow: hidden;
  border: 1px solid var(--psy-line);
  border-radius: 24px;
  background: linear-gradient(145deg, #fff, #fbfcff);
  box-shadow: 0 14px 38px rgba(20,42,78,.055);
  color: var(--psy-ink);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.nova-psy-program-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--psy-blue), #84a4ff);
  transform: scaleX(.23);
  transform-origin: left;
  transition: transform .28s ease;
}
.nova-psy-program-group-family .nova-psy-program-card::before { background: linear-gradient(90deg, #7657a3, #b498d1); }
.nova-psy-program-group-group .nova-psy-program-card::before { background: linear-gradient(90deg, #9b7140, #d0ad72); }
.nova-psy-program-card:hover { transform: translateY(-6px); border-color: rgba(49,91,224,.25); box-shadow: 0 28px 65px rgba(20,42,78,.12); }
.nova-psy-program-card:hover::before { transform: scaleX(1); }
.nova-psy-card-mark { color: #9aa7bc; font-size: 11px; font-weight: 850; letter-spacing: .14em; }
.nova-psy-program-card h3 { margin: 27px 0 12px; font-size: 25px; line-height: 1.18; }
.nova-psy-program-card p { margin: 0; font-size: 14px; line-height: 1.7; }
.nova-psy-card-link { display: inline-flex; align-items: center; gap: 8px; margin-top: auto; padding-top: 24px; color: var(--psy-blue); font-size: 13px; font-weight: 820; }
.nova-psy-card-link svg { width: 17px; height: 17px; }

/* How it works */
.nova-psy-how { padding: 105px 0; background: linear-gradient(145deg, #091b37, #112d57); }
.nova-psy-how-grid { display: grid; grid-template-columns: minmax(0,.78fr) minmax(0,1.22fr); gap: 90px; }
.nova-psy-how-copy h2 { margin: 0; color: #fff; font-size: clamp(42px, 4.8vw, 67px); line-height: 1.02; letter-spacing: -.055em; }
.nova-psy-how-steps { display: grid; gap: 0; }
.nova-psy-how-steps article { display: grid; grid-template-columns: 52px minmax(0,1fr); gap: 20px; padding: 27px 0; border-bottom: 1px solid rgba(255,255,255,.13); }
.nova-psy-how-steps article:first-child { padding-top: 0; }
.nova-psy-how-steps article > span { color: #86a8ff; font-size: 13px; font-weight: 900; letter-spacing: .1em; }
.nova-psy-how-steps h3 { margin: 0; color: #fff; font-size: 24px; }
.nova-psy-how-steps p { margin: 9px 0 0; color: #c8d4e6 !important; line-height: 1.7; }

/* Team */
.nova-psy-team { padding: 110px 0; background: var(--psy-cream); }
.nova-psy-team-grid { display: grid; grid-template-columns: minmax(0,1.05fr) minmax(0,.95fr); gap: 80px; align-items: center; }
.nova-psy-team-media { position: relative; min-height: 570px; }
.nova-psy-team-photo { position: absolute; overflow: hidden; border-radius: 28px; background: #e7ebf2; box-shadow: 0 26px 70px rgba(36,45,61,.15); }
.nova-psy-team-photo:first-child { left: 0; top: 54px; width: 54%; height: 480px; z-index: 2; }
.nova-psy-team-photo:last-child { right: 0; top: 0; width: 56%; height: 510px; }
.nova-psy-team-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.nova-psy-team-copy h2 { margin: 0; font-size: clamp(42px, 4.4vw, 62px); line-height: 1.04; letter-spacing: -.055em; }
.nova-psy-team-copy > p:not(.nova-psy-kicker) { margin: 24px 0 0; font-size: 17px; line-height: 1.78; }
.nova-psy-team-links { display: flex; flex-wrap: wrap; gap: 14px 28px; margin-top: 31px; }
.nova-psy-team-links a { display: inline-flex; align-items: center; gap: 8px; color: var(--psy-blue); font-size: 14px; font-weight: 820; }
.nova-psy-team-links svg { width: 17px; height: 17px; }

/* Shared final CTA */
.nova-psy-final { padding: 88px 0; background: #fff; }
.nova-psy-final-panel {
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  gap: 50px;
  align-items: center;
  padding: 54px 58px;
  border-radius: 30px;
  background: linear-gradient(135deg, #0a1c39, #173d75);
  box-shadow: 0 32px 80px rgba(13,36,73,.18);
}
.nova-psy-final-panel h2 { margin: 0; color: #fff; font-size: clamp(38px, 4.4vw, 59px); line-height: 1.03; }
.nova-psy-final-panel p:not(.nova-psy-kicker) { max-width: 740px; margin: 17px 0 0; color: #cbd7e8 !important; font-size: 16px; line-height: 1.7; }
.nova-psy-final-button { display: inline-flex; align-items: center; gap: 10px; white-space: nowrap; background: #fff !important; color: var(--psy-ink) !important; }

/* Program hero */
.nova-psy-program-hero {
  position: relative;
  min-height: 690px;
  isolation: isolate;
  background: linear-gradient(135deg, #fbfcff 0%, #f4f7fd 58%, #f8f3ed 100%);
}
.nova-psy-program-glow { position: absolute; inset: 0; z-index: -1; background: radial-gradient(circle at 83% 18%, rgba(70,102,216,.18), transparent 29%); }
.nova-psy-program-hero-grid { display: grid; grid-template-columns: minmax(0,1.04fr) minmax(440px,.96fr); gap: 72px; align-items: center; min-height: 690px; padding-block: 75px; }
.nova-psy-program-hero-copy .nova-breadcrumbs { margin-bottom: 27px; }
.nova-psy-program-hero-copy h1 { max-width: 790px; margin: 0; font-size: clamp(52px, 5.2vw, 78px); line-height: 1; letter-spacing: -.06em; }
.nova-psy-program-hero-copy .nova-actions { margin-top: 32px; }
.nova-psy-program-badges { display: flex; flex-wrap: wrap; gap: 13px 25px; margin-top: 29px; }
.nova-psy-program-badges span { display: inline-flex; align-items: center; gap: 8px; color: #506079; font-size: 13px; font-weight: 720; }
.nova-psy-program-badges svg { width: 16px; color: var(--psy-blue); }
.nova-psy-program-visual { position: relative; min-height: 540px; }
.nova-psy-program-photo { position: absolute; overflow: hidden; border: 7px solid rgba(255,255,255,.94); background: #e6ebf4; box-shadow: 0 30px 75px rgba(18,39,74,.17); }
.nova-psy-program-photo img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.nova-psy-program-photo-main { right: 0; top: 0; width: 70%; height: 500px; border-radius: 30px 30px 74px 30px; }
.nova-psy-program-photo-small { left: 0; bottom: 8px; width: 45%; height: 300px; z-index: 2; border-radius: 24px 24px 54px 24px; }
.nova-psy-program-label { position: absolute; right: 20px; bottom: -8px; z-index: 3; width: 57%; padding: 20px 22px; border-radius: 17px; background: rgba(9,28,58,.91); color: #fff; backdrop-filter: blur(12px); }
.nova-psy-program-label span { display: block; color: #9eb8ff; font-size: 10px; font-weight: 850; letter-spacing: .13em; }
.nova-psy-program-label strong { display: block; margin-top: 6px; color: #fff; font-size: 17px; }

/* Recognition */
.nova-psy-recognition { padding: 104px 0 98px; background: #fff; }
.nova-psy-section-head { max-width: 850px; margin-bottom: 42px; }
.nova-psy-section-head h2 { margin: 0; font-size: clamp(39px, 4.2vw, 59px); line-height: 1.05; letter-spacing: -.055em; }
.nova-psy-section-head-centered { margin-inline: auto; text-align: center; }
.nova-psy-recognition-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 18px; }
.nova-psy-recognition-grid article {
  display: grid;
  grid-template-columns: 48px minmax(0,1fr);
  gap: 18px;
  align-items: start;
  padding: 26px 27px;
  border: 1px solid var(--psy-line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 12px 35px rgba(20,42,78,.045);
}
.nova-psy-recognition-grid article > span { display: grid; place-items: center; width: 43px; height: 43px; border-radius: 13px; background: var(--psy-ice); color: var(--psy-blue); }
.nova-psy-recognition-grid svg { width: 20px; height: 20px; }
.nova-psy-recognition-grid h3 { margin: 1px 0 8px; font-size: 21px; }
.nova-psy-recognition-grid p { margin: 0; line-height: 1.66; }

/* Program process */
.nova-psy-process { padding: 105px 0; background: linear-gradient(145deg, #091b37, #122e57); }
.nova-psy-process-grid { display: grid; grid-template-columns: minmax(0,.78fr) minmax(0,1.22fr); gap: 84px; }
.nova-psy-process-copy { position: sticky; top: 120px; align-self: start; }
.nova-psy-process-copy h2 { margin: 0; color: #fff; font-size: clamp(42px, 4.6vw, 64px); line-height: 1.03; }
.nova-psy-process-copy > p:not(.nova-psy-kicker) { margin: 24px 0 0; color: #c5d2e4 !important; font-size: 16px; line-height: 1.75; }
.nova-psy-process-steps article { display: grid; grid-template-columns: 58px minmax(0,1fr); gap: 19px; padding: 29px 0; border-bottom: 1px solid rgba(255,255,255,.13); }
.nova-psy-process-steps article:first-child { padding-top: 0; }
.nova-psy-process-steps > article > span { color: #89aaff; font-size: 13px; font-weight: 900; letter-spacing: .11em; }
.nova-psy-process-steps h3 { margin: 0; color: #fff; font-size: 25px; }
.nova-psy-process-steps p { margin: 10px 0 0; color: #c7d3e4 !important; line-height: 1.72; }

/* Details */
.nova-psy-details { padding: 100px 0; background: #fff; }
.nova-psy-details-tint { background: var(--psy-ice); }
.nova-psy-detail-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 18px; }
.nova-psy-detail-grid article { display: grid; grid-template-columns: 48px minmax(0,1fr); gap: 18px; padding: 27px; border: 1px solid var(--psy-line); border-radius: 21px; background: rgba(255,255,255,.88); }
.nova-psy-detail-index { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 13px; background: #edf2ff; color: var(--psy-blue); font-size: 11px; font-weight: 900; }
.nova-psy-detail-grid h3 { margin: 1px 0 8px; font-size: 21px; }
.nova-psy-detail-grid p { margin: 0; line-height: 1.68; }
.nova-psy-detail-grid p b,
.nova-psy-detail-grid p strong { color: var(--psy-ink); }

/* Results */
.nova-psy-results { padding: 105px 0; background: var(--psy-cream); }
.nova-psy-result-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 17px; }
.nova-psy-result-grid article { min-height: 250px; padding: 28px 25px; border: 1px solid rgba(118,92,52,.13); border-radius: 22px; background: rgba(255,255,255,.88); box-shadow: 0 14px 35px rgba(47,40,28,.055); }
.nova-psy-result-grid article > span { display: grid; place-items: center; width: 47px; height: 47px; border-radius: 15px; background: #f3eadc; color: #a3763c; }
.nova-psy-result-grid svg { width: 23px; height: 23px; }
.nova-psy-result-grid h3 { margin: 27px 0 10px; font-size: 23px; }
.nova-psy-result-grid p { margin: 0; font-size: 14px; line-height: 1.68; }

/* Format */
.nova-psy-format { padding: 88px 0; background: #fff; }
.nova-psy-format-panel { display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 55px; align-items: center; padding: 52px 56px; border-radius: 29px; background: linear-gradient(135deg, #263f85, #10264f); box-shadow: 0 28px 70px rgba(19,43,85,.17); }
.nova-psy-format-panel h2 { margin: 0; color: #fff; font-size: clamp(34px, 3.7vw, 50px); line-height: 1.08; }
.nova-psy-format-text { margin-top: 17px; color: #d2dced; }
.nova-psy-format-text p,
.nova-psy-format-text h3 { margin: 5px 0; color: #d2dced !important; font-size: 15px; line-height: 1.65; }
.nova-psy-format-button { display: inline-flex; align-items: center; gap: 10px; white-space: nowrap; background: #fff !important; color: var(--psy-ink) !important; }

/* Compact team */
.nova-psy-team-compact { padding: 100px 0; background: #f7f9fd; }
.nova-psy-team-compact-grid { display: grid; grid-template-columns: minmax(0,.9fr) minmax(0,1.1fr); gap: 70px; align-items: center; }
.nova-psy-team-compact-media { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.nova-psy-team-compact-media > div { height: 430px; overflow: hidden; border-radius: 24px; background: #e6ebf4; box-shadow: 0 20px 50px rgba(18,39,74,.12); }
.nova-psy-team-compact-media img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.nova-psy-team-compact-grid h2 { margin: 0; font-size: clamp(40px,4.2vw,58px); line-height: 1.04; }
.nova-psy-team-compact-grid > div:last-child > p:not(.nova-psy-kicker) { margin: 24px 0 0; font-size: 17px; line-height: 1.75; }

/* Related */
.nova-psy-related { padding: 100px 0; background: #fff; }
.nova-psy-related-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 19px; }
.nova-psy-related-grid a { display: flex; flex-direction: column; min-height: 280px; padding: 28px; border: 1px solid var(--psy-line); border-radius: 23px; background: #fff; color: var(--psy-ink); box-shadow: 0 14px 37px rgba(20,42,78,.05); transition: transform .25s ease, box-shadow .25s ease; }
.nova-psy-related-grid a:hover { transform: translateY(-5px); box-shadow: 0 25px 58px rgba(20,42,78,.11); }
.nova-psy-related-grid a > span { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 14px; background: var(--psy-ice); color: var(--psy-blue); }
.nova-psy-related-grid a > span svg { width: 24px; height: 24px; }
.nova-psy-related-grid h3 { margin: 25px 0 10px; font-size: 24px; line-height: 1.18; }
.nova-psy-related-grid p { margin: 0; font-size: 14px; line-height: 1.68; }
.nova-psy-related-grid strong { display: inline-flex; align-items: center; gap: 8px; margin-top: auto; padding-top: 22px; color: var(--psy-blue); font-size: 13px; }
.nova-psy-related-grid strong svg { width: 17px; height: 17px; }

@media (max-width: 1080px) {
  .nova-psy-hub-grid,
  .nova-psy-program-hero-grid { grid-template-columns: minmax(0,1fr) 430px; gap: 48px; }
  .nova-psy-program-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .nova-psy-result-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .nova-psy-team-grid,
  .nova-psy-team-compact-grid { gap: 48px; }
}

@media (max-width: 860px) {
  .nova-psychology-premium .nova-shell { width: min(calc(100% - 34px), 760px); }
  .nova-psy-hub-grid,
  .nova-psy-program-hero-grid,
  .nova-psy-intro-grid,
  .nova-psy-how-grid,
  .nova-psy-process-grid,
  .nova-psy-team-grid,
  .nova-psy-team-compact-grid,
  .nova-psy-final-panel,
  .nova-psy-format-panel { grid-template-columns: 1fr; }
  .nova-psy-hub-grid { padding-block: 58px 75px; min-height: 0; }
  .nova-psy-team-visual { min-height: 560px; max-width: 610px; width: 100%; margin-inline: auto; }
  .nova-psy-intro-grid { gap: 10px; }
  .nova-psy-program-hero-grid { padding-block: 55px 75px; min-height: 0; }
  .nova-psy-program-visual { min-height: 540px; max-width: 590px; width: 100%; margin-inline: auto; }
  .nova-psy-how-copy,
  .nova-psy-process-copy { position: static; }
  .nova-psy-team-media { min-height: 590px; max-width: 650px; width: 100%; margin-inline: auto; }
  .nova-psy-final-panel,
  .nova-psy-format-panel { padding: 45px; }
  .nova-psy-final-button,
  .nova-psy-format-button { justify-self: start; }
}

@media (max-width: 620px) {
  .nova-psychology-premium .nova-shell { width: min(calc(100% - 24px), 540px); }
  .nova-psy-hub-grid,
  .nova-psy-program-hero-grid { padding-block: 38px 58px; }
  .nova-psy-hub-copy h1,
  .nova-psy-program-hero-copy h1 { font-size: clamp(42px, 12.5vw, 57px); }
  .nova-psy-lead { font-size: 17px; }
  .nova-psy-hub-copy .nova-actions,
  .nova-psy-program-hero-copy .nova-actions { display: grid; }
  .nova-psy-hub-copy .nova-actions .nova-button,
  .nova-psy-program-hero-copy .nova-actions .nova-button { width: 100%; }
  .nova-psy-trust,
  .nova-psy-program-badges { display: grid; gap: 11px; }
  .nova-psy-team-visual { min-height: 460px; }
  .nova-psy-portrait { border-width: 5px; border-radius: 22px; }
  .nova-psy-portrait-anna { top: 65px; width: 51%; height: 330px; }
  .nova-psy-portrait-maria { width: 58%; height: 390px; }
  .nova-psy-portrait > span { left: 10px; right: 10px; bottom: 10px; padding: 11px 12px; }
  .nova-psy-portrait strong { font-size: 14px; }
  .nova-psy-portrait small { font-size: 10px; }
  .nova-psy-visual-note { right: 0; left: 15%; bottom: 1px; max-width: none; padding: 13px 15px; font-size: 11px; }
  .nova-psy-intro { padding-top: 72px; }
  .nova-psy-intro-grid h2,
  .nova-psy-how-copy h2,
  .nova-psy-process-copy h2,
  .nova-psy-team-copy h2,
  .nova-psy-team-compact-grid h2,
  .nova-psy-section-head h2 { font-size: 38px; }
  .nova-psy-programs { padding-bottom: 76px; }
  .nova-psy-program-group + .nova-psy-program-group { margin-top: 72px; }
  .nova-psy-program-head { grid-template-columns: 52px 1fr; gap: 15px; }
  .nova-psy-program-icon { width: 50px; height: 50px; border-radius: 15px; }
  .nova-psy-program-icon svg { width: 23px; height: 23px; }
  .nova-psy-program-grid,
  .nova-psy-recognition-grid,
  .nova-psy-detail-grid,
  .nova-psy-result-grid,
  .nova-psy-related-grid { grid-template-columns: 1fr; }
  .nova-psy-program-card { min-height: 270px; }
  .nova-psy-how,
  .nova-psy-process,
  .nova-psy-recognition,
  .nova-psy-details,
  .nova-psy-results,
  .nova-psy-team,
  .nova-psy-team-compact,
  .nova-psy-related { padding-block: 74px; }
  .nova-psy-program-visual { min-height: 430px; }
  .nova-psy-program-photo-main { width: 74%; height: 390px; border-radius: 24px 24px 54px 24px; }
  .nova-psy-program-photo-small { width: 46%; height: 235px; border-radius: 19px 19px 42px 19px; }
  .nova-psy-program-label { right: 5px; bottom: -6px; width: 69%; padding: 15px 16px; }
  .nova-psy-program-label strong { font-size: 14px; }
  .nova-psy-recognition-grid article,
  .nova-psy-detail-grid article { grid-template-columns: 43px 1fr; padding: 22px 20px; }
  .nova-psy-process-grid { gap: 47px; }
  .nova-psy-process-steps article { grid-template-columns: 45px 1fr; gap: 13px; padding: 24px 0; }
  .nova-psy-result-grid article { min-height: 0; }
  .nova-psy-format-panel,
  .nova-psy-final-panel { padding: 33px 24px; border-radius: 23px; }
  .nova-psy-format-button,
  .nova-psy-final-button { width: 100%; justify-content: center; white-space: normal; text-align: center; }
  .nova-psy-team-media { min-height: 470px; }
  .nova-psy-team-photo:first-child { top: 45px; height: 390px; }
  .nova-psy-team-photo:last-child { height: 420px; }
  .nova-psy-team-compact-media { gap: 10px; }
  .nova-psy-team-compact-media > div { height: 330px; border-radius: 18px; }
}

/* =========================================================
   NOVA 3.0 — refined psychology experience + mobile form repair
   No overlapping portraits. Stronger premium hierarchy.
   ========================================================= */

/* Psychology: shared luxury palette */
.nova-psychology-premium{
  --psy-ink:#0a1b35;
  --psy-navy:#091a34;
  --psy-navy-2:#102d57;
  --psy-blue:#315be0;
  --psy-blue-soft:#8eacff;
  --psy-paper:#fbfaf7;
  --psy-ivory:#f6f1e9;
  --psy-lavender:#f1edf8;
  --psy-line:rgba(21,46,86,.12);
  background:#fff;
}
.nova-psychology-premium .nova-button{
  min-height:54px;
  border-radius:13px;
  font-weight:820;
  letter-spacing:-.01em;
}

/* Psychology hub: dark editorial hero with a clean, non-overlapping duo panel */
.nova-psy-hub-hero{
  min-height:760px;
  color:#fff;
  background:
    radial-gradient(circle at 84% 12%,rgba(79,119,234,.25),transparent 30%),
    radial-gradient(circle at 18% 86%,rgba(201,167,106,.14),transparent 27%),
    linear-gradient(135deg,#07172f 0%,#0c2346 54%,#15396b 100%);
}
.nova-psy-hub-hero::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px),linear-gradient(rgba(255,255,255,.028) 1px,transparent 1px);
  background-size:82px 82px;
  mask-image:linear-gradient(to right,black,transparent 72%);
}
.nova-psy-hub-grid{
  grid-template-columns:minmax(0,.92fr) minmax(520px,1.08fr);
  gap:72px;
  min-height:760px;
  padding-block:76px;
}
.nova-psy-hub-copy{position:relative;z-index:2;max-width:680px}
.nova-psy-hub-copy .nova-breadcrumbs,
.nova-psy-hub-copy .nova-breadcrumbs a{color:rgba(255,255,255,.62)}
.nova-psy-hub-copy .nova-psy-kicker{color:#91afff!important}
.nova-psy-hub-copy h1{
  color:#fff;
  font-size:clamp(54px,5.2vw,79px);
  line-height:1.01;
  letter-spacing:-.058em;
  text-wrap:balance;
}
.nova-psy-hub-copy .nova-psy-lead{color:#d4deec!important;max-width:640px}
.nova-psy-hub-copy .nova-psy-primary{
  border-color:#fff!important;
  background:#fff!important;
  color:var(--psy-ink)!important;
  box-shadow:0 18px 44px rgba(0,0,0,.2);
}
.nova-psy-hub-copy .nova-psy-primary:hover{background:#edf2ff!important;color:var(--psy-ink)!important}
.nova-psy-hub-copy .nova-button-secondary{
  border-color:rgba(255,255,255,.28)!important;
  background:rgba(255,255,255,.06)!important;
  color:#fff!important;
}
.nova-psy-hub-copy .nova-button-secondary:hover{background:rgba(255,255,255,.13)!important;color:#fff!important}
.nova-psy-trust span{color:#dce5f1}
.nova-psy-trust svg{color:#91afff}
.nova-psy-orb{border-color:rgba(255,255,255,.1)}

.nova-psy-duo-stage{
  position:relative;
  z-index:2;
  padding:25px;
  border:1px solid rgba(255,255,255,.24);
  border-radius:34px;
  background:linear-gradient(150deg,rgba(255,255,255,.98),rgba(245,248,255,.94));
  box-shadow:0 42px 110px rgba(0,0,0,.3);
}
.nova-psy-duo-heading{
  display:grid;
  grid-template-columns:auto minmax(0,1fr);
  gap:22px;
  align-items:center;
  margin-bottom:20px;
  padding:2px 3px 19px;
  border-bottom:1px solid #dfe5f0;
}
.nova-psy-duo-heading span{
  color:var(--psy-blue);
  font-size:10px;
  font-weight:900;
  letter-spacing:.16em;
}
.nova-psy-duo-heading strong{
  color:var(--psy-ink);
  font-size:17px;
  line-height:1.35;
  letter-spacing:-.02em;
}
.nova-psy-duo-grid{display:grid;grid-template-columns:1fr 1fr;gap:16px}
.nova-psy-duo-card{
  overflow:hidden;
  border:1px solid #dce3ef;
  border-radius:24px;
  background:#fff;
  color:var(--psy-ink);
  transition:transform .25s ease,box-shadow .25s ease,border-color .25s ease;
}
.nova-psy-duo-card:hover{transform:translateY(-5px);border-color:#b9c8ea;box-shadow:0 24px 55px rgba(13,34,68,.15)}
.nova-psy-duo-card figure{height:390px;margin:0;overflow:hidden;background:#e9edf5}
.nova-psy-duo-card img{width:100%;height:100%;object-fit:cover;object-position:center top;display:block}
.nova-psy-duo-card>div{min-height:118px;padding:20px 19px 18px}
.nova-psy-duo-card strong{display:block;color:var(--psy-ink);font-size:20px;letter-spacing:-.03em}
.nova-psy-duo-card small{display:block;margin-top:7px;color:#68758a;font-size:12px;line-height:1.5}
.nova-psy-duo-note{
  display:flex;
  align-items:center;
  gap:13px;
  margin-top:16px;
  padding:16px 18px;
  border-radius:17px;
  background:#0c2243;
  color:#fff;
  font-size:13px;
  font-weight:720;
  line-height:1.45;
}
.nova-psy-duo-note svg{width:25px;height:25px;color:#d1ad6e}

/* Program catalogue: grouped editorial panels */
.nova-psy-intro{padding-top:106px;background:var(--psy-paper)}
.nova-psy-intro-grid{border-bottom:0;padding-bottom:30px}
.nova-psy-programs{padding:34px 0 116px;background:var(--psy-paper)}
.nova-psy-program-group{
  padding:38px;
  border:1px solid var(--psy-line);
  border-radius:30px;
  background:#fff;
  box-shadow:0 24px 70px rgba(15,37,72,.07);
}
.nova-psy-program-group+.nova-psy-program-group{margin-top:28px}
.nova-psy-program-head{
  grid-template-columns:72px minmax(0,1fr);
  margin-bottom:34px;
  padding-bottom:28px;
  border-bottom:1px solid var(--psy-line);
}
.nova-psy-program-icon{border-radius:22px}
.nova-psy-program-grid{gap:16px}
.nova-psy-program-card{
  min-height:310px;
  border:0;
  border-radius:22px;
  background:linear-gradient(160deg,#f7f9fe,#fff);
  box-shadow:inset 0 0 0 1px rgba(21,46,86,.09);
}
.nova-psy-program-card::before{height:3px;transform:scaleX(1);opacity:.72}
.nova-psy-program-card:hover{transform:translateY(-6px);box-shadow:0 26px 58px rgba(14,36,72,.12),inset 0 0 0 1px rgba(49,91,224,.18)}
.nova-psy-card-mark{
  display:inline-flex;
  align-items:center;
  width:max-content;
  min-height:27px;
  padding:0 10px;
  border-radius:999px;
  background:#eaf0ff;
  color:var(--psy-blue);
}
.nova-psy-program-group-family .nova-psy-card-mark{background:#f1eaf7;color:#74549c}
.nova-psy-program-group-group .nova-psy-card-mark{background:#f6eddf;color:#98703f}

/* Team section: two independent cards, never layered */
.nova-psy-team{background:linear-gradient(180deg,#f8f4ed,#fbfaf7)}
.nova-psy-team-grid{grid-template-columns:minmax(0,1.12fr) minmax(0,.88fr);gap:74px}
.nova-psy-team-gallery{display:grid;grid-template-columns:1fr 1fr;gap:18px}
.nova-psy-team-gallery>a{
  overflow:hidden;
  border:1px solid rgba(24,48,87,.12);
  border-radius:27px;
  background:#fff;
  box-shadow:0 26px 65px rgba(31,36,48,.12);
}
.nova-psy-team-gallery figure{height:500px;margin:0;overflow:hidden;background:#e7ebf2}
.nova-psy-team-gallery img{width:100%;height:100%;object-fit:cover;object-position:center top;display:block}
.nova-psy-team-gallery>a>span{display:block;padding:20px}
.nova-psy-team-gallery strong{display:block;color:var(--psy-ink);font-size:20px}
.nova-psy-team-gallery small{display:block;margin-top:6px;color:#6b7587;font-size:12px;line-height:1.5}

/* Program detail hero: clean duo panel, no photo overlays */
.nova-psy-program-hero{
  min-height:720px;
  background:
    radial-gradient(circle at 84% 12%,rgba(89,125,234,.24),transparent 28%),
    linear-gradient(135deg,#07172f 0%,#0c2346 56%,#143866 100%);
}
.nova-psy-program-hero-grid{grid-template-columns:minmax(0,.92fr) minmax(500px,1.08fr);gap:70px;min-height:720px}
.nova-psy-program-hero-copy .nova-breadcrumbs,
.nova-psy-program-hero-copy .nova-breadcrumbs a{color:rgba(255,255,255,.6)}
.nova-psy-program-hero-copy .nova-psy-kicker{color:#91afff!important}
.nova-psy-program-hero-copy h1{color:#fff;font-size:clamp(50px,5vw,74px);line-height:1.01;text-wrap:balance}
.nova-psy-program-hero-copy .nova-psy-lead{color:#d5dfed!important}
.nova-psy-program-hero-copy .nova-psy-primary{background:#fff!important;border-color:#fff!important;color:var(--psy-ink)!important}
.nova-psy-program-hero-copy .nova-button-secondary{background:rgba(255,255,255,.06)!important;border-color:rgba(255,255,255,.28)!important;color:#fff!important}
.nova-psy-program-badges span{color:#dfe8f4}

.nova-psy-program-team-panel{
  padding:25px;
  border:1px solid rgba(255,255,255,.24);
  border-radius:32px;
  background:linear-gradient(150deg,#fff,#f4f7fc);
  box-shadow:0 40px 100px rgba(0,0,0,.28);
}
.nova-psy-program-team-heading{
  display:grid;
  grid-template-columns:auto minmax(0,1fr);
  gap:20px;
  align-items:center;
  margin-bottom:18px;
  padding-bottom:18px;
  border-bottom:1px solid #dfe5ef;
}
.nova-psy-program-team-heading span{color:var(--psy-blue);font-size:10px;font-weight:900;letter-spacing:.16em}
.nova-psy-program-team-heading strong{color:var(--psy-ink);font-size:17px;line-height:1.35}
.nova-psy-program-team-grid{display:grid;grid-template-columns:1fr 1fr;gap:15px}
.nova-psy-program-team-grid>a{overflow:hidden;border:1px solid #dce3ee;border-radius:22px;background:#fff}
.nova-psy-program-team-grid figure{height:350px;margin:0;overflow:hidden;background:#e7ebf2}
.nova-psy-program-team-grid img{width:100%;height:100%;object-fit:cover;object-position:center top;display:block}
.nova-psy-program-team-grid>a>span{display:block;padding:17px}
.nova-psy-program-team-grid strong{display:block;color:var(--psy-ink);font-size:18px}
.nova-psy-program-team-grid small{display:block;margin-top:5px;color:#68758a;font-size:11px}
.nova-psy-program-team-panel>p{margin:16px 3px 0;color:#667389!important;font-size:12px;line-height:1.55}

/* Compact team stays side by side without visual collisions */
.nova-psy-team-compact-media>div{position:relative;inset:auto!important;transform:none!important}

/* Legal page: guarantee readable labels on every CTA and submit state */
.nova-legal-premium a.nova-button,
.nova-legal-premium a.nova-button:visited{opacity:1!important;text-shadow:none!important}
.nova-legal-primary,
.nova-legal-primary:visited{background:#fff!important;border-color:#fff!important;color:#0a1b35!important}
.nova-legal-secondary,
.nova-legal-secondary:visited{background:rgba(255,255,255,.07)!important;border-color:rgba(255,255,255,.32)!important;color:#fff!important}
.nova-legal-form-wrap input[type="submit"],
.nova-legal-form-wrap button[type="submit"]{
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
  min-height:54px!important;
  border:1px solid #315be0!important;
  background:#315be0!important;
  color:#fff!important;
  -webkit-text-fill-color:#fff!important;
  font-weight:850!important;
  opacity:1!important;
  visibility:visible!important;
  box-shadow:0 14px 30px rgba(49,91,224,.24)!important;
}
.nova-legal-form-wrap input[type="submit"]:hover,
.nova-legal-form-wrap button[type="submit"]:hover{background:#244bc6!important;border-color:#244bc6!important;color:#fff!important}

/* Home consultation block: premium on desktop, guaranteed one-column form on phones */
.nova-home-contact-section{background:#fff}
.nova-home-contact-premium{
  grid-template-columns:minmax(280px,.78fr) minmax(0,1.22fr)!important;
  gap:42px!important;
  align-items:stretch!important;
  padding:22px!important;
  border-radius:32px!important;
  background:linear-gradient(145deg,#081a35,#112f5a)!important;
  box-shadow:0 34px 85px rgba(9,31,65,.18)!important;
}
.nova-home-contact-copy{display:flex;flex-direction:column;justify-content:center;padding:30px 24px 30px 30px;min-width:0}
.nova-home-contact-copy h2{max-width:480px;margin:0;color:#fff!important;font-size:clamp(40px,4vw,58px)!important;line-height:1.03!important;letter-spacing:-.05em!important}
.nova-home-contact-copy>p:not(.nova-kicker){margin-top:22px;color:#cbd7e7!important;font-size:16px;line-height:1.7}
.nova-home-contact-form-card{
  width:100%!important;
  min-width:0!important;
  padding:30px!important;
  border-radius:24px!important;
  background:#fff!important;
}
.nova-home-contact-form-card .wpcf7,
.nova-home-contact-form-card .wpcf7-form{width:100%!important;max-width:none!important;min-width:0!important}
.nova-home-contact-form-card .wpcf7-form{display:grid!important;grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:16px!important}
.nova-home-contact-form-card .wpcf7-form>p{min-width:0!important;margin:0!important;color:#2e3b51!important}
.nova-home-contact-form-card label{display:block!important;color:#243149!important;font-size:12px!important;font-weight:760!important;line-height:1.4!important}
.nova-home-contact-form-card .wpcf7-form-control-wrap{display:block!important;margin-top:7px!important}
.nova-home-contact-form-card input:not([type=checkbox]):not([type=radio]):not([type=submit]),
.nova-home-contact-form-card select,
.nova-home-contact-form-card textarea{
  display:block!important;
  width:100%!important;
  max-width:100%!important;
  min-width:0!important;
  min-height:50px!important;
  margin:0!important;
  padding:13px 14px!important;
  border:1px solid #d8dfeb!important;
  border-radius:12px!important;
  background:#f8faff!important;
  color:#13213a!important;
  box-shadow:none!important;
}
.nova-home-contact-form-card textarea{min-height:160px!important;resize:vertical!important}
.nova-home-contact-form-card .wpcf7-form>p:has(textarea),
.nova-home-contact-form-card .wpcf7-form>p:last-of-type{grid-column:1/-1!important}
.nova-home-contact-form-card input[type="submit"]{
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
  width:100%!important;
  min-height:52px!important;
  border:1px solid #315be0!important;
  border-radius:12px!important;
  background:#315be0!important;
  color:#fff!important;
  -webkit-text-fill-color:#fff!important;
  font-weight:850!important;
  opacity:1!important;
  box-shadow:0 14px 30px rgba(49,91,224,.22)!important;
}

/* Keep Astra scroll-up away from form submit buttons on phones */
.ast-scroll-to-top-right{right:14px!important;bottom:14px!important}

@media(max-width:1080px){
  .nova-psy-hub-grid,.nova-psy-program-hero-grid{grid-template-columns:1fr;gap:46px}
  .nova-psy-duo-stage,.nova-psy-program-team-panel{max-width:760px;width:100%;margin-inline:auto}
  .nova-psy-team-grid{grid-template-columns:1fr;gap:45px}
}

@media(max-width:720px){
  .nova-psy-hub-grid,.nova-psy-program-hero-grid{padding-block:44px 58px}
  .nova-psy-hub-copy h1,.nova-psy-program-hero-copy h1{font-size:clamp(42px,12vw,56px)}
  .nova-psy-duo-stage,.nova-psy-program-team-panel{padding:16px;border-radius:24px}
  .nova-psy-duo-heading,.nova-psy-program-team-heading{grid-template-columns:1fr;gap:6px}
  .nova-psy-duo-grid,.nova-psy-program-team-grid{grid-template-columns:1fr 1fr;gap:10px}
  .nova-psy-duo-card figure{height:300px}
  .nova-psy-program-team-grid figure{height:285px}
  .nova-psy-duo-card>div{min-height:102px;padding:14px 12px}
  .nova-psy-duo-card strong,.nova-psy-program-team-grid strong{font-size:15px}
  .nova-psy-duo-card small,.nova-psy-program-team-grid small{font-size:10px}
  .nova-psy-duo-note{padding:14px;font-size:11px}
  .nova-psy-program-group{padding:25px 18px;border-radius:23px}
  .nova-psy-program-head{grid-template-columns:52px minmax(0,1fr);gap:14px;padding-bottom:22px}
  .nova-psy-team-gallery{grid-template-columns:1fr 1fr;gap:10px}
  .nova-psy-team-gallery figure{height:330px}
  .nova-psy-team-gallery>a>span{padding:14px 12px}
  .nova-psy-team-gallery strong{font-size:15px}
  .nova-psy-team-gallery small{font-size:10px}

  .nova-home-contact-premium{
    display:block!important;
    width:min(calc(100% - 24px),560px)!important;
    max-width:560px!important;
    margin-inline:auto!important;
    padding:14px!important;
    border-radius:25px!important;
  }
  .nova-home-contact-copy{width:100%!important;max-width:none!important;padding:25px 18px 28px!important}
  .nova-home-contact-copy h2{font-size:39px!important}
  .nova-home-contact-form-card{display:block!important;width:100%!important;max-width:none!important;min-width:0!important;padding:22px 18px!important;border-radius:19px!important}
  .nova-home-contact-form-card .wpcf7,
  .nova-home-contact-form-card .wpcf7-form,
  .nova-home-contact-form-card form{display:block!important;width:100%!important;max-width:none!important;min-width:0!important}
  .nova-home-contact-form-card .wpcf7-form>p,
  .nova-home-contact-form-card .wpcf7-form>label{
    display:block!important;
    float:none!important;
    clear:both!important;
    width:100%!important;
    max-width:none!important;
    min-width:0!important;
    margin:0 0 15px!important;
    grid-column:auto!important;
  }
  .nova-home-contact-form-card input:not([type=checkbox]):not([type=radio]):not([type=submit]),
  .nova-home-contact-form-card select,
  .nova-home-contact-form-card textarea,
  .nova-home-contact-form-card input[type="submit"]{
    display:block!important;
    width:100%!important;
    max-width:100%!important;
    min-width:0!important;
    float:none!important;
  }
  .nova-home-contact-form-card textarea{min-height:170px!important}
  .nova-home-contact-form-card input[type="submit"]{margin-top:4px!important}
}

@media(max-width:460px){
  .nova-psy-duo-grid,.nova-psy-program-team-grid,.nova-psy-team-gallery{grid-template-columns:1fr}
  .nova-psy-duo-card figure,.nova-psy-program-team-grid figure,.nova-psy-team-gallery figure{height:390px}
  .nova-psy-duo-card>div{min-height:0}
  .nova-psy-program-group{padding:22px 15px}
  .nova-home-contact-copy h2{font-size:36px!important}
  .ast-scroll-to-top-right{right:10px!important;bottom:10px!important}
}

/* =========================================================
   NOVA 3.1 — Premium coordinated accompaniment
   ========================================================= */
.nova-accomp{
  --ac-ink:#081a35;--ac-navy:#071a36;--ac-navy-2:#0d2a55;--ac-blue:#315de4;
  --ac-sky:#edf3ff;--ac-paper:#f5f7fb;--ac-muted:#607087;--ac-line:#dce4f0;
  overflow:hidden;background:#fff;color:var(--ac-ink)
}
.nova-accomp .nova-shell{width:min(calc(100% - 48px),1260px);margin-inline:auto}
.nova-accomp h1,.nova-accomp h2,.nova-accomp h3{margin-top:0;color:var(--ac-ink);letter-spacing:-.038em}
.nova-accomp p{color:var(--ac-muted)}
.nova-accomp svg{width:1em;height:1em;fill:currentColor;flex:0 0 auto}
.nova-accomp-kicker{margin:0 0 17px!important;color:var(--ac-blue)!important;font-size:12px;font-weight:850;letter-spacing:.14em;text-transform:uppercase}
.nova-accomp-kicker-light{color:#91b1ff!important}
.nova-accomp-hero{position:relative;isolation:isolate;padding:92px 0 96px;background:var(--ac-navy);color:#fff}
.nova-accomp-hero:before{content:"";position:absolute;inset:0;z-index:-2;background:linear-gradient(115deg,#071a36 0%,#0b2145 58%,#102f60 100%)}
.nova-accomp-hero:after{content:"";position:absolute;right:-180px;top:-220px;width:720px;height:720px;border:1px solid rgba(145,177,255,.22);border-radius:50%;z-index:-1}
.nova-accomp-hero-mark{position:absolute;left:47%;bottom:-130px;width:440px;height:440px;border-radius:50%;background:rgba(56,101,224,.12);filter:blur(1px);z-index:-1}
.nova-accomp-hero-grid{display:grid;grid-template-columns:minmax(0,1.02fr) minmax(500px,.98fr);gap:76px;align-items:center}
.nova-accomp-hero .nova-breadcrumbs{margin-bottom:34px;color:rgba(255,255,255,.56)}
.nova-accomp-hero .nova-breadcrumbs a:hover{color:#fff}
.nova-accomp-hero h1{max-width:720px;margin:0;color:#fff;font-size:clamp(48px,5vw,76px);line-height:.99}
.nova-accomp-lead{max-width:710px;margin:26px 0 0!important;color:#c7d4e8!important;font-size:19px;line-height:1.72}
.nova-accomp-actions{display:flex;flex-wrap:wrap;gap:12px;margin-top:34px}
.nova-accomp .nova-accomp-primary,.nova-accomp .nova-accomp-primary:visited{display:inline-flex;align-items:center;gap:10px;background:#fff!important;border-color:#fff!important;color:var(--ac-ink)!important}
.nova-accomp .nova-accomp-primary:hover{background:#eaf0ff!important;color:var(--ac-ink)!important}
.nova-accomp .nova-accomp-secondary,.nova-accomp .nova-accomp-secondary:visited{background:rgba(255,255,255,.06)!important;border-color:rgba(255,255,255,.3)!important;color:#fff!important}
.nova-accomp .nova-accomp-secondary:hover{background:rgba(255,255,255,.12)!important;color:#fff!important}
.nova-accomp-note{margin:23px 0 0!important;color:#9fb2ce!important;font-size:12px;font-weight:700;letter-spacing:.04em}
.nova-accomp-hero-team{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:13px;align-items:end}
.nova-accomp-hero-person{position:relative;display:block;min-width:0;overflow:hidden;border:1px solid rgba(255,255,255,.17);border-radius:24px;background:rgba(255,255,255,.07);box-shadow:0 28px 70px rgba(0,0,0,.25);transition:transform .25s ease,border-color .25s ease}
.nova-accomp-hero-person:hover{transform:translateY(-7px);border-color:rgba(144,177,255,.65)}
.nova-accomp-hero-person figure{height:390px;margin:0;background:#dde6f4;overflow:hidden}
.nova-accomp-hero-person img{width:100%;height:100%;object-fit:cover;object-position:center top;display:block}
.nova-accomp-hero-person span{display:block;min-height:98px;padding:18px 16px;background:#fff}
.nova-accomp-hero-person strong{display:block;color:var(--ac-ink);font-size:16px;line-height:1.2}
.nova-accomp-hero-person small{display:block;margin-top:7px;color:#65738a;font-size:11px;line-height:1.4}
.nova-accomp-person-tatyana{transform:translateY(-22px)}
.nova-accomp-person-tatyana:hover{transform:translateY(-29px)}
.nova-accomp-person-tatyana span{background:#eaf0ff}
.nova-accomp-intro{padding:112px 0 118px;background:#fff}
.nova-accomp-heading{display:grid;grid-template-columns:1fr .78fr;gap:90px;align-items:end;margin-bottom:50px}
.nova-accomp-heading h2{max-width:760px;margin:0;font-size:clamp(39px,4vw,60px);line-height:1.04}
.nova-accomp-heading>p{margin:0!important;font-size:17px;line-height:1.76}
.nova-accomp-tracks{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.nova-accomp-track{position:relative;display:flex;flex-direction:column;min-height:420px;padding:34px;border:1px solid var(--ac-line);border-radius:26px;background:#fff;box-shadow:0 22px 60px rgba(15,35,70,.07);transition:transform .25s ease,box-shadow .25s ease}
.nova-accomp-track:hover{transform:translateY(-6px);box-shadow:0 30px 75px rgba(15,35,70,.13)}
.nova-accomp-track-law{background:linear-gradient(145deg,#f1f5ff 0%,#fff 72%)}
.nova-accomp-track-psychology{background:linear-gradient(145deg,#fff7f0 0%,#fff 72%)}
.nova-accomp-track-coordination{background:var(--ac-navy);border-color:var(--ac-navy)}
.nova-accomp-track-head{display:flex;justify-content:space-between;align-items:center}
.nova-accomp-track-icon{display:grid;place-items:center;width:56px;height:56px;border-radius:17px;background:#e9efff;color:var(--ac-blue)}
.nova-accomp-track-icon svg{width:27px;height:27px}
.nova-accomp-track-head em{font-style:normal;color:#9ba8bb;font-size:12px;font-weight:850;letter-spacing:.12em}
.nova-accomp-track h3{margin:34px 0 0;font-size:29px;line-height:1.08}
.nova-accomp-track>p{margin:18px 0 0!important;font-size:15px;line-height:1.75}
.nova-accomp-track-result{margin-top:auto;padding-top:26px;border-top:1px solid #e4e9f2}
.nova-accomp-track-result span{display:block;color:#8a97aa;font-size:10px;font-weight:850;letter-spacing:.12em;text-transform:uppercase}
.nova-accomp-track-result strong{display:block;margin-top:8px;color:#314058;font-size:13px;line-height:1.55}
.nova-accomp-track-coordination h3,.nova-accomp-track-coordination .nova-accomp-track-result strong{color:#fff}
.nova-accomp-track-coordination>p{color:#c5d2e4!important}
.nova-accomp-track-coordination .nova-accomp-track-icon{background:rgba(255,255,255,.1);color:#fff}
.nova-accomp-track-coordination .nova-accomp-track-result{border-color:rgba(255,255,255,.14)}
.nova-accomp-track-coordination .nova-accomp-track-result span,.nova-accomp-track-coordination .nova-accomp-track-head em{color:#90a7c7}
.nova-accomp-situations{padding:112px 0;background:var(--ac-navy);color:#fff}
.nova-accomp-heading-light h2{color:#fff}
.nova-accomp-service-links{display:flex;flex-wrap:wrap;gap:10px 24px;align-items:center;justify-content:flex-end}
.nova-accomp-service-links a{color:#c9d7ea;font-size:13px;font-weight:750}
.nova-accomp-service-links a:hover{color:#fff}
.nova-accomp-situation-grid{display:grid;grid-template-columns:repeat(3,1fr);border-top:1px solid rgba(255,255,255,.13);border-left:1px solid rgba(255,255,255,.13)}
.nova-accomp-situation-grid article{min-height:270px;padding:34px;border-right:1px solid rgba(255,255,255,.13);border-bottom:1px solid rgba(255,255,255,.13);transition:background .25s ease}
.nova-accomp-situation-grid article:hover{background:rgba(255,255,255,.055)}
.nova-accomp-situation-grid span{color:#79a2ff;font-size:11px;font-weight:850;letter-spacing:.12em}
.nova-accomp-situation-grid h3{margin:46px 0 0;color:#fff;font-size:25px;line-height:1.15}
.nova-accomp-situation-grid p{margin:14px 0 0!important;color:#b9c7da!important;font-size:14px;line-height:1.67}
.nova-accomp-process{padding:116px 0;background:var(--ac-paper)}
.nova-accomp-process-grid{display:grid;grid-template-columns:.78fr 1.22fr;gap:100px;align-items:start}
.nova-accomp-process-copy{position:sticky;top:125px}
.nova-accomp-process-copy h2{margin:0;font-size:clamp(39px,4vw,57px);line-height:1.04}
.nova-accomp-process-copy>p:last-child{margin:24px 0 0!important;font-size:17px;line-height:1.74}
.nova-accomp-steps{border-top:1px solid #cfd8e6}
.nova-accomp-steps article{display:grid;grid-template-columns:56px 1fr;gap:25px;padding:30px 0;border-bottom:1px solid #cfd8e6}
.nova-accomp-steps>article>span{display:grid;place-items:center;width:48px;height:48px;border-radius:14px;background:#e5ecff;color:var(--ac-blue);font-size:11px;font-weight:850}
.nova-accomp-steps h3{margin:0;font-size:25px}
.nova-accomp-steps p{margin:10px 0 0!important;line-height:1.67}
.nova-accomp-team{padding:116px 0;background:#fff}
.nova-accomp-team-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.nova-accomp-team-card{display:block;overflow:hidden;border:1px solid var(--ac-line);border-radius:26px;background:#fff;box-shadow:0 22px 60px rgba(14,36,72,.08);transition:transform .25s ease,box-shadow .25s ease}
.nova-accomp-team-card:hover{transform:translateY(-7px);box-shadow:0 34px 80px rgba(14,36,72,.15)}
.nova-accomp-team-card figure{height:460px;margin:0;background:#e6ecf5;overflow:hidden}
.nova-accomp-team-card img{width:100%;height:100%;object-fit:cover;object-position:center top;display:block}
.nova-accomp-team-card>div{padding:28px 28px 30px}
.nova-accomp-team-card>div>span{color:var(--ac-blue);font-size:10px;font-weight:850;letter-spacing:.1em;text-transform:uppercase}
.nova-accomp-team-card h3{margin:10px 0 0;font-size:29px}
.nova-accomp-team-card p{margin:11px 0 0!important;font-size:13px;line-height:1.55}
.nova-accomp-team-card>div>strong{display:flex;align-items:center;gap:8px;margin-top:23px;color:var(--ac-ink);font-size:13px}
.nova-accomp-team-card>div>strong svg{width:17px;height:17px}
.nova-accomp-value{padding:0 0 110px;background:#fff}
.nova-accomp-value-panel{display:grid;grid-template-columns:1fr 1fr;gap:70px;padding:60px;border-radius:30px;background:var(--ac-navy);box-shadow:0 32px 80px rgba(8,26,53,.18)}
.nova-accomp-value-panel h2{margin:0;color:#fff;font-size:clamp(37px,3.7vw,55px);line-height:1.04}
.nova-accomp-value-panel ul{display:grid;grid-template-columns:1fr 1fr;gap:13px 18px;margin:0;padding:0;list-style:none}
.nova-accomp-value-panel li{display:flex;gap:11px;align-items:flex-start;color:#d9e4f2;font-size:14px;line-height:1.55}
.nova-accomp-value-panel li span{display:grid;place-items:center;width:24px;height:24px;border-radius:50%;background:rgba(121,162,255,.17);color:#8eb0ff}
.nova-accomp-value-panel li svg{width:14px;height:14px}
.nova-accomp-scope{padding:0 0 110px;background:#fff}
.nova-accomp-scope-panel{display:grid;grid-template-columns:64px 1fr;gap:24px;align-items:start;padding:34px 40px;border:1px solid #eadcbf;border-radius:22px;background:#fffaf1}
.nova-accomp-scope-panel>span{display:grid;place-items:center;width:52px;height:52px;border-radius:16px;background:#f2e4c9;color:#82662f;font-size:22px;font-weight:850;font-family:Georgia,serif}
.nova-accomp-scope h2{margin:0;font-size:28px}
.nova-accomp-scope p{margin:9px 0 0!important;color:#695f4d!important;line-height:1.7}
.nova-accomp-contact{padding:104px 0;background:#f3f6fb}
.nova-accomp-contact-panel{display:grid;grid-template-columns:.82fr 1.18fr;gap:48px;padding:54px;border-radius:30px;background:var(--ac-navy);box-shadow:0 30px 80px rgba(8,26,53,.18)}
.nova-accomp-contact-copy h2{margin:0;color:#fff;font-size:clamp(39px,3.8vw,56px);line-height:1.04}
.nova-accomp-contact-copy>p:not(.nova-accomp-kicker){margin:23px 0 0!important;color:#c6d3e5!important;font-size:17px;line-height:1.72}
.nova-accomp-contact-copy>div{display:grid;gap:10px;margin-top:30px}
.nova-accomp-contact-copy>div span{position:relative;padding-left:20px;color:#e1e9f5;font-size:13px}
.nova-accomp-contact-copy>div span:before{content:"";position:absolute;left:0;top:.55em;width:7px;height:7px;border-radius:50%;background:#78a1ff}
.nova-accomp-form-wrap{min-width:0;padding:28px;border-radius:22px;background:#fff}
.nova-accomp-form-wrap .nova-native-form,.nova-accomp-form-wrap .wpcf7-form{color:var(--ac-ink)}
.nova-accomp-form-wrap .wpcf7-form{display:grid;grid-template-columns:1fr 1fr;gap:14px}
.nova-accomp-form-wrap .wpcf7-form>p{margin:0;color:#435069}
.nova-accomp-form-wrap .wpcf7-form>p:has(textarea),.nova-accomp-form-wrap .wpcf7-form>p:last-of-type{grid-column:1/-1}
.nova-accomp-form-wrap label{color:#314057;font-size:12px;font-weight:750}
.nova-accomp-form-wrap input:not([type=checkbox]):not([type=radio]):not([type=submit]),.nova-accomp-form-wrap select,.nova-accomp-form-wrap textarea{width:100%;border:1px solid #dce3ee!important;border-radius:12px!important;background:#f8faff!important;color:#14233c!important}
.nova-accomp-form-wrap textarea{min-height:170px}
.nova-accomp-form-wrap input[type=submit],.nova-accomp-form-wrap button[type=submit]{width:100%;min-height:52px;border-radius:12px!important;background:var(--ac-blue)!important;border-color:var(--ac-blue)!important;color:#fff!important;font-weight:800!important}
.nova-accomp-form-wrap input[type=submit]:hover,.nova-accomp-form-wrap button[type=submit]:hover{background:#244bc6!important;border-color:#244bc6!important;color:#fff!important}

@media(max-width:1100px){
 .nova-accomp-hero-grid{grid-template-columns:1fr;gap:58px}.nova-accomp-hero-copy{max-width:850px}.nova-accomp-hero-team{max-width:830px}.nova-accomp-heading{grid-template-columns:1fr;gap:24px}.nova-accomp-heading>p{max-width:800px}.nova-accomp-process-grid{grid-template-columns:1fr;gap:48px}.nova-accomp-process-copy{position:static;max-width:820px}.nova-accomp-contact-panel{grid-template-columns:1fr}.nova-accomp-value-panel{grid-template-columns:1fr;gap:38px}
}
@media(max-width:760px){
 .nova-accomp .nova-shell{width:min(calc(100% - 28px),1260px)}
 .nova-accomp-hero{padding:54px 0 64px}.nova-accomp-hero h1{font-size:clamp(40px,11.4vw,58px)}.nova-accomp-lead{font-size:16px}.nova-accomp-actions{display:grid}.nova-accomp-actions .nova-button{width:100%;justify-content:center}
 .nova-accomp-hero-team{grid-template-columns:1fr;gap:13px}.nova-accomp-person-tatyana,.nova-accomp-person-tatyana:hover{transform:none}.nova-accomp-hero-person{display:grid;grid-template-columns:120px 1fr;min-height:148px}.nova-accomp-hero-person figure{height:148px}.nova-accomp-hero-person span{display:flex;flex-direction:column;justify-content:center;min-height:148px;padding:18px}.nova-accomp-hero-person strong{font-size:18px}
 .nova-accomp-intro,.nova-accomp-situations,.nova-accomp-process,.nova-accomp-team{padding:74px 0}.nova-accomp-heading{margin-bottom:34px}.nova-accomp-heading h2{font-size:38px}.nova-accomp-tracks,.nova-accomp-team-grid{grid-template-columns:1fr}.nova-accomp-track{min-height:360px;padding:26px}.nova-accomp-situation-grid{grid-template-columns:1fr}.nova-accomp-situation-grid article{min-height:220px;padding:27px}.nova-accomp-situation-grid h3{margin-top:32px}.nova-accomp-service-links{justify-content:flex-start}
 .nova-accomp-steps article{grid-template-columns:46px 1fr;gap:17px}.nova-accomp-team-card figure{height:430px}.nova-accomp-value{padding-bottom:74px}.nova-accomp-value-panel{padding:34px 24px;border-radius:24px}.nova-accomp-value-panel ul{grid-template-columns:1fr}.nova-accomp-scope{padding-bottom:74px}.nova-accomp-scope-panel{grid-template-columns:1fr;padding:26px 22px}.nova-accomp-contact{padding:70px 0}.nova-accomp-contact-panel{padding:30px 20px;border-radius:24px}.nova-accomp-form-wrap{padding:20px 16px}.nova-accomp-form-wrap .wpcf7-form{grid-template-columns:1fr}.nova-accomp-form-wrap .wpcf7-form>p{grid-column:1!important}
}

/* =========================================================
   NOVA About — premium editorial page (v3.2.0)
   ========================================================= */
.nova-about { overflow: hidden; background: #fff; }
.nova-about svg { width: 1em; height: 1em; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.nova-about-kicker { margin: 0 0 14px; color: #2f61e8; font-size: 12px; line-height: 1.35; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.nova-about-kicker-light { color: #8eafff; }
.nova-about h1, .nova-about h2, .nova-about h3 { text-wrap: balance; }

.nova-about-hero { position: relative; min-height: 720px; display: flex; align-items: center; overflow: hidden; color: #fff; background: linear-gradient(122deg, #07162c 0%, #0d2344 54%, #173c76 100%); }
.nova-about-hero::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(circle at 76% 18%, rgba(100,148,255,.24), transparent 28%), radial-gradient(circle at 12% 90%, rgba(201,154,75,.13), transparent 25%); }
.nova-about-orbit { position: absolute; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; pointer-events: none; }
.nova-about-orbit-one { width: 520px; height: 520px; right: -120px; top: -220px; }
.nova-about-orbit-two { width: 330px; height: 330px; left: -130px; bottom: -180px; }
.nova-about-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, .9fr) minmax(560px, 1.1fr); gap: 58px; align-items: center; padding-block: 74px; }
.nova-about-hero .nova-breadcrumbs, .nova-about-hero .nova-breadcrumbs a { color: rgba(232,239,251,.72); }
.nova-about-hero-copy h1 { max-width: 720px; margin: 18px 0 24px; color: #fff; font-size: clamp(48px, 5.4vw, 78px); line-height: .98; letter-spacing: -.055em; }
.nova-about-lead { max-width: 700px; margin: 0 0 30px; color: #d6e1f2; font-size: clamp(18px, 1.7vw, 22px); line-height: 1.68; }
.nova-about-actions { align-items: center; }
.nova-about-primary { min-height: 54px; padding-inline: 25px; border-color: #6d94ff; background: #4b73e8; }
.nova-about-primary:hover { background: #5c83f3; }
.nova-about-primary svg, .nova-about-cta-button svg { width: 18px; height: 18px; }
.nova-about-secondary { min-height: 54px; border-color: rgba(255,255,255,.28); background: rgba(255,255,255,.04); color: #fff !important; }
.nova-about-secondary:hover { border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.09); }
.nova-about-note { margin: 25px 0 0; color: #9fb2cd; font-size: 12px; font-weight: 700; letter-spacing: .025em; }

.nova-about-hero-team { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; align-items: stretch; }
.nova-about-hero-person { position: relative; display: flex; min-width: 0; min-height: 480px; overflow: hidden; border: 1px solid rgba(255,255,255,.18); border-radius: 24px; background: rgba(255,255,255,.07); box-shadow: 0 28px 80px rgba(0,0,0,.25); transition: transform .25s ease, border-color .25s ease; }
.nova-about-hero-person:hover { transform: translateY(-7px); border-color: rgba(149,179,255,.7); }
.nova-about-hero-person figure { width: 100%; height: 100%; margin: 0; background: linear-gradient(160deg, #dfe8f8, #f8f5ef); }
.nova-about-hero-person img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center top; }
.nova-about-hero-person::after { content: ""; position: absolute; inset: 46% 0 0; background: linear-gradient(180deg, transparent, rgba(4,15,32,.92)); pointer-events: none; }
.nova-about-hero-person > span { position: absolute; z-index: 2; left: 18px; right: 18px; bottom: 18px; }
.nova-about-hero-person strong { display: block; color: #fff; font-size: 17px; line-height: 1.2; letter-spacing: -.02em; }
.nova-about-hero-person small { display: block; margin-top: 6px; color: #cbd8eb; font-size: 11px; line-height: 1.45; }

.nova-about-story { padding-block: 110px; background: #fff; }
.nova-about-story-grid { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); gap: 105px; align-items: start; }
.nova-about-story-title h2 { max-width: 520px; margin: 0; font-size: clamp(43px, 5vw, 68px); line-height: 1.02; letter-spacing: -.052em; }
.nova-about-story-copy { max-width: 690px; }
.nova-about-story-copy > p { margin: 0 0 24px; color: #536176; font-size: 18px; line-height: 1.8; }
.nova-about-story-copy blockquote { position: relative; margin: 44px 0 0; padding: 28px 30px 28px 34px; border-left: 3px solid var(--nova-gold); border-radius: 0 18px 18px 0; background: #f8f6f1; color: var(--nova-navy); font-size: clamp(20px, 2vw, 27px); font-weight: 730; line-height: 1.45; letter-spacing: -.025em; }

.nova-about-pillars { padding-block: 100px; background: #f5f8fd; }
.nova-about-heading { display: grid; grid-template-columns: minmax(0, 1fr) minmax(340px, 520px); gap: 62px; align-items: end; margin-bottom: 44px; }
.nova-about-heading h2 { max-width: 720px; margin: 0; font-size: clamp(38px, 4.4vw, 58px); line-height: 1.03; letter-spacing: -.05em; }
.nova-about-heading > p { margin: 0; color: #5a687b; font-size: 17px; line-height: 1.75; }
.nova-about-pillar-list { overflow: hidden; border: 1px solid #dbe3ef; border-radius: 28px; background: #fff; box-shadow: 0 28px 80px rgba(16,42,82,.08); }
.nova-about-pillar { position: relative; display: grid; grid-template-columns: 64px 58px minmax(0, 1.2fr) minmax(250px, .8fr) 40px; gap: 22px; align-items: center; min-height: 174px; padding: 28px 32px; border-bottom: 1px solid #e5eaf2; transition: background .2s ease; }
.nova-about-pillar:last-child { border-bottom: 0; }
.nova-about-pillar:hover { background: #f9fbff; }
.nova-about-pillar-number { color: #96a3b5; font-size: 12px; font-weight: 850; letter-spacing: .1em; }
.nova-about-pillar-icon { display: grid; place-items: center; width: 54px; height: 54px; border-radius: 17px; background: #eef3ff; color: #2f61e8; }
.nova-about-pillar-icon svg { width: 25px; height: 25px; }
.nova-about-pillar-main strong { display: block; color: var(--nova-navy); font-size: 26px; line-height: 1.15; letter-spacing: -.035em; }
.nova-about-pillar-main em { display: block; margin-top: 11px; color: #59677a; font-size: 15px; font-style: normal; line-height: 1.65; }
.nova-about-pillar-note { color: #778395; font-size: 13px; line-height: 1.6; }
.nova-about-pillar-arrow { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; border: 1px solid #cfd9eb; color: #2f61e8; }
.nova-about-pillar-arrow svg { width: 18px; height: 18px; }

.nova-about-origin { position: relative; padding-block: 105px; overflow: hidden; background: #08182f; }
.nova-about-origin::before { content: ""; position: absolute; width: 660px; height: 660px; right: -260px; top: -330px; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; }
.nova-about-origin-head { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr minmax(340px, 520px); gap: 30px 70px; align-items: end; margin-bottom: 52px; }
.nova-about-origin-head .nova-about-kicker { grid-column: 1 / -1; margin-bottom: -12px; }
.nova-about-origin-head h2 { margin: 0; color: #fff; font-size: clamp(40px, 4.7vw, 62px); line-height: 1.03; letter-spacing: -.05em; }
.nova-about-origin-head > p:last-child { margin: 0; color: #c2cfe1; font-size: 17px; line-height: 1.75; }
.nova-about-origin-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.nova-about-origin-grid article { min-height: 290px; padding: 30px; border: 1px solid rgba(255,255,255,.13); border-radius: 22px; background: rgba(255,255,255,.045); backdrop-filter: blur(10px); }
.nova-about-origin-grid article > span { color: #8caeff; font-size: 12px; font-weight: 850; letter-spacing: .12em; }
.nova-about-origin-grid h3 { margin: 60px 0 16px; color: #fff; font-size: 25px; line-height: 1.17; }
.nova-about-origin-grid p { margin: 0; color: #bfcce0; font-size: 15px; line-height: 1.7; }

.nova-about-approach { padding-block: 105px; background: #fff; }
.nova-about-approach-grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.nova-about-approach-grid::before { content: ""; position: absolute; left: 8%; right: 8%; top: 33px; height: 1px; background: #dbe3ef; }
.nova-about-approach-grid article { position: relative; z-index: 1; min-height: 295px; padding: 0 26px 28px; border: 1px solid #e1e7f0; border-radius: 22px; background: #fff; box-shadow: 0 15px 44px rgba(18,44,85,.06); }
.nova-about-approach-grid article > span { display: grid; place-items: center; width: 66px; height: 66px; margin: -1px 0 34px; border: 7px solid #fff; border-radius: 50%; background: #2f61e8; color: #fff; font-size: 12px; font-weight: 850; box-shadow: 0 10px 30px rgba(47,97,232,.24); }
.nova-about-approach-grid h3 { margin: 0 0 14px; font-size: 23px; }
.nova-about-approach-grid p { margin: 0; color: #617084; font-size: 14px; line-height: 1.7; }

.nova-about-manifesto { padding: 0 0 100px; background: #fff; }
.nova-about-manifesto-panel { position: relative; display: grid; grid-template-columns: 180px minmax(0, 1fr); gap: 58px; align-items: center; min-height: 300px; padding: 48px 58px; overflow: hidden; border-radius: 30px; background: linear-gradient(120deg, #112a50, #0a1c35); box-shadow: 0 28px 80px rgba(9,29,57,.18); }
.nova-about-manifesto-panel::after { content: ""; position: absolute; width: 380px; height: 380px; right: -150px; top: -220px; border: 1px solid rgba(255,255,255,.1); border-radius: 50%; }
.nova-about-manifesto-panel > span { display: grid; place-items: center; width: 150px; height: 150px; border: 1px solid rgba(255,255,255,.16); border-radius: 34px; color: #85a8ff; font-size: 92px; font-weight: 850; line-height: 1; }
.nova-about-manifesto-panel blockquote { position: relative; z-index: 1; margin: 0; color: #fff; font-size: clamp(27px, 3.2vw, 46px); font-weight: 740; line-height: 1.25; letter-spacing: -.04em; }

.nova-about-team { padding-block: 100px; background: #f5f8fd; }
.nova-about-team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.nova-about-team-card { display: grid; grid-template-rows: 420px 1fr; overflow: hidden; border: 1px solid #dfe6f0; border-radius: 24px; background: #fff; transition: transform .24s ease, box-shadow .24s ease; }
.nova-about-team-card:hover { transform: translateY(-7px); box-shadow: 0 26px 70px rgba(15,42,83,.12); }
.nova-about-team-card figure { margin: 0; overflow: hidden; background: linear-gradient(160deg, #dfe8f8, #f8f5ef); }
.nova-about-team-card img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center top; transition: transform .5s ease; }
.nova-about-team-card:hover img { transform: scale(1.025); }
.nova-about-team-card > div { padding: 25px 26px 27px; }
.nova-about-team-card > div > span { color: #2f61e8; font-size: 11px; font-weight: 830; letter-spacing: .06em; text-transform: uppercase; }
.nova-about-team-card h3 { margin: 9px 0 10px; font-size: 28px; }
.nova-about-team-card p { min-height: 52px; margin: 0 0 22px; color: #697689; font-size: 14px; line-height: 1.65; }
.nova-about-team-card strong { display: inline-flex; align-items: center; gap: 8px; color: #2f61e8; font-size: 13px; }
.nova-about-team-card strong svg { width: 17px; height: 17px; }

.nova-about-cta { padding-block: 95px; background: #fff; }
.nova-about-cta-panel { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 55px; align-items: center; padding: 54px 58px; border-radius: 28px; background: linear-gradient(122deg, #07162c, #143b74); color: #fff; }
.nova-about-cta-panel h2 { max-width: 780px; margin: 0 0 14px; color: #fff; font-size: clamp(36px, 4.3vw, 56px); line-height: 1.04; letter-spacing: -.05em; }
.nova-about-cta-panel p:not(.nova-about-kicker) { max-width: 720px; margin: 0; color: #c8d5e7; font-size: 17px; line-height: 1.7; }
.nova-about-cta-button { min-width: 230px; min-height: 58px; border-color: #fff; background: #fff; color: #0a1c35 !important; }
.nova-about-cta-button:hover { background: #edf3ff; color: #0a1c35 !important; }

@media (max-width: 1120px) {
  .nova-about-hero-grid { grid-template-columns: 1fr; }
  .nova-about-hero-copy { max-width: 850px; }
  .nova-about-hero-team { max-width: 900px; width: 100%; }
  .nova-about-hero-person { min-height: 430px; }
  .nova-about-pillar { grid-template-columns: 52px 54px minmax(0,1fr) 38px; }
  .nova-about-pillar-note { grid-column: 3 / 4; margin-top: -10px; }
  .nova-about-approach-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .nova-about-approach-grid::before { display: none; }
  .nova-about-approach-grid article > span { margin-top: 0; }
}

@media (max-width: 820px) {
  .nova-about-hero { min-height: auto; }
  .nova-about-hero-grid { gap: 42px; padding-block: 58px; }
  .nova-about-hero-copy h1 { font-size: clamp(43px, 12vw, 62px); }
  .nova-about-hero-team { grid-template-columns: repeat(3, minmax(170px, 1fr)); gap: 12px; overflow-x: auto; padding-bottom: 8px; scroll-snap-type: x mandatory; }
  .nova-about-hero-person { min-height: 390px; scroll-snap-align: start; }
  .nova-about-story, .nova-about-pillars, .nova-about-origin, .nova-about-approach, .nova-about-team, .nova-about-cta { padding-block: 72px; }
  .nova-about-story-grid, .nova-about-heading, .nova-about-origin-head { grid-template-columns: 1fr; gap: 28px; }
  .nova-about-origin-head .nova-about-kicker { grid-column: auto; margin-bottom: -10px; }
  .nova-about-origin-grid { grid-template-columns: 1fr; }
  .nova-about-origin-grid article { min-height: auto; }
  .nova-about-origin-grid h3 { margin-top: 34px; }
  .nova-about-pillar { grid-template-columns: 48px 52px minmax(0,1fr) 36px; padding: 24px 20px; }
  .nova-about-pillar-note { grid-column: 3 / 5; }
  .nova-about-manifesto-panel { grid-template-columns: 100px 1fr; gap: 30px; padding: 40px; }
  .nova-about-manifesto-panel > span { width: 96px; height: 96px; border-radius: 24px; font-size: 58px; }
  .nova-about-team-grid { grid-template-columns: 1fr; }
  .nova-about-team-card { grid-template-columns: 42% 58%; grid-template-rows: none; min-height: 330px; }
  .nova-about-team-card figure { min-height: 330px; }
  .nova-about-cta-panel { grid-template-columns: 1fr; }
  .nova-about-cta-button { justify-self: start; }
}

@media (max-width: 560px) {
  .nova-about-hero-grid { padding-block: 45px 52px; }
  .nova-about-hero-copy h1 { font-size: clamp(39px, 13.3vw, 52px); line-height: 1.01; }
  .nova-about-lead { font-size: 17px; }
  .nova-about-actions { display: grid; grid-template-columns: 1fr; }
  .nova-about-actions .nova-button { width: 100%; }
  .nova-about-hero-team { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; overflow: visible; margin: 0; padding: 0; }
  .nova-about-hero-person { min-height: 310px; border-radius: 18px; }
  .nova-about-hero-person.nova-about-person-tatyana { grid-column: 1 / -1; min-height: 360px; }
  .nova-about-hero-person > span { left: 13px; right: 13px; bottom: 13px; }
  .nova-about-hero-person strong { font-size: 14px; }
  .nova-about-hero-person small { font-size: 9px; }
  .nova-about-story, .nova-about-pillars, .nova-about-origin, .nova-about-approach, .nova-about-team, .nova-about-cta { padding-block: 58px; }
  .nova-about-story-title h2, .nova-about-heading h2, .nova-about-origin-head h2 { font-size: 38px; }
  .nova-about-story-copy > p { font-size: 16px; }
  .nova-about-story-copy blockquote { padding: 24px; font-size: 20px; }
  .nova-about-pillar-list { border-radius: 20px; }
  .nova-about-pillar { display: grid; grid-template-columns: 46px 1fr 34px; gap: 15px; min-height: auto; padding: 24px 20px; }
  .nova-about-pillar-number { grid-column: 1; grid-row: 1; }
  .nova-about-pillar-icon { grid-column: 1; grid-row: 2; width: 46px; height: 46px; }
  .nova-about-pillar-main { grid-column: 2 / 4; grid-row: 1 / 3; }
  .nova-about-pillar-main strong { font-size: 22px; }
  .nova-about-pillar-note { grid-column: 2 / 4; grid-row: 3; margin: 0; }
  .nova-about-pillar-arrow { display: none; }
  .nova-about-approach-grid { grid-template-columns: 1fr; }
  .nova-about-approach-grid article { min-height: auto; padding: 0 22px 24px; }
  .nova-about-manifesto { padding-bottom: 58px; }
  .nova-about-manifesto-panel { grid-template-columns: 1fr; gap: 24px; padding: 30px 24px; border-radius: 22px; }
  .nova-about-manifesto-panel > span { width: 78px; height: 78px; font-size: 46px; }
  .nova-about-manifesto-panel blockquote { font-size: 25px; }
  .nova-about-team-card { display: block; min-height: 0; }
  .nova-about-team-card figure { height: 430px; min-height: 0; }
  .nova-about-cta-panel { gap: 28px; padding: 34px 24px; border-radius: 22px; }
  .nova-about-cta-panel h2 { font-size: 38px; }
  .nova-about-cta-button { width: 100%; min-width: 0; }
}
