/* Falez Akademi shared design system
   Keep page-specific functional selectors in their original files. */
:root {
  --color-primary: #203b70;
  --color-primary-dark: #162b54;
  --color-accent: #d9a429;
  --color-heading: #15213a;
  --color-text: #15213a;
  --color-text-soft: #5d6879;
  --color-border: #e1e6ed;
  --color-background: #ffffff;
  --color-surface: #ffffff;
  --color-surface-soft: #f5f7fa;
  --color-success: #238b55;
  --color-warning: #a66b00;
  --color-danger: #b42318;
  --color-info: #245ea8;
  --container-width: 1180px;
  --radius-sm: 9px;
  --radius-md: 13px;
  --radius-lg: 18px;
  --shadow-sm: 0 6px 20px rgba(25, 42, 73, .07);
  --shadow-md: 0 16px 40px rgba(25, 42, 73, .09);
  --space-1: .25rem;
  --space-2: .5rem;
  --space-3: .75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 5rem;
  --transition-fast: 160ms ease;
  --transition-normal: 240ms ease;
}

body.site-page {
  margin: 0;
  color: var(--color-text);
  background: var(--color-background);
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

body.site-page *, body.site-page *::before, body.site-page *::after { box-sizing: border-box; }
body.site-page img { max-width: 100%; height: auto; }
body.site-page a { text-decoration: none; }
body.site-page h1, body.site-page h2, body.site-page h3 { color: var(--color-text); letter-spacing: -.025em; }
body.site-page p { color: var(--color-text-soft); }
body.site-page .container { width: min(calc(100% - 40px), var(--container-width)); max-width: var(--container-width); margin-inline: auto; padding-inline: 0; }
body.site-page :focus-visible { outline: 3px solid rgba(217, 164, 41, .7); outline-offset: 3px; }

.site-skip-link {
  position: fixed;
  z-index: 1200;
  top: 8px;
  left: 8px;
  padding: 10px 16px;
  color: #fff !important;
  background: var(--color-primary-dark);
  border-radius: var(--radius-sm);
  transform: translateY(-150%);
}
.site-skip-link:focus { transform: translateY(0); }

body.site-page .site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  display: flex;
  align-items: center;
  height: 76px;
  padding: 0;
  background: rgba(255, 255, 255, .97);
  border-bottom: 1px solid transparent;
  box-shadow: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}
body.site-page .site-header.is-scrolled { border-color: var(--color-border); box-shadow: var(--shadow-sm); }
body.site-page .site-header-inner { display: flex; align-items: center; justify-content: space-between; height: 100%; }
body.site-page .site-brand { color: var(--color-primary) !important; font-size: 21px; font-weight: 800; letter-spacing: -.5px; white-space: nowrap; }
body.site-page .site-navigation { display: flex; align-items: center; gap: 24px; }
body.site-page .site-nav-list { display: flex; align-items: center; gap: 5px; margin: 0; padding: 0; list-style: none; }
body.site-page .site-nav-item { position: relative; }
body.site-page .site-nav-link,
body.site-page .site-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  min-height: 44px;
  padding: 10px 12px;
  color: #344057 !important;
  background: transparent;
  border: 0;
  border-radius: var(--radius-sm);
  font: inherit;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
}
body.site-page .site-nav-link:hover,
body.site-page .site-dropdown-toggle:hover,
body.site-page .site-nav-link.is-active,
body.site-page .site-dropdown-toggle.is-active { color: var(--color-primary) !important; background: #f1f4f9; }
body.site-page .site-dropdown-toggle i { font-size: 11px; transition: transform var(--transition-fast); }
body.site-page .site-dropdown-toggle[aria-expanded="true"] i { transform: rotate(180deg); }
body.site-page .site-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 220px;
  margin: 0;
  padding: 8px;
  visibility: visible;
  opacity: 0;
  list-style: none;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
  transition: opacity var(--transition-fast), transform var(--transition-fast);
}
body.site-page .site-dropdown.is-open .site-dropdown-menu { display: block; opacity: 1; transform: translateY(0); }
body.site-page .site-dropdown-menu a { display: block; padding: 9px 11px; color: #344057 !important; border-radius: 8px; font-size: 14px; }
body.site-page .site-dropdown-menu a:hover { color: var(--color-primary) !important; background: #f2f5f9; }
body.site-page .site-menu-toggle { display: none; width: 46px; height: 46px; padding: 11px; background: transparent; border: 1px solid var(--color-border); border-radius: 10px; cursor: pointer; }
body.site-page .site-menu-toggle span { display: block; height: 2px; margin: 5px 0; background: var(--color-primary); transition: transform var(--transition-fast), opacity var(--transition-fast); }
body.site-page .site-menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(7px) rotate(45deg); }
body.site-page .site-menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
body.site-page .site-menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-7px) rotate(-45deg); }

body.site-page .site-button,
body.site-page .btn-primary,
body.site-page button.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 10px 18px;
  color: #fff !important;
  background: var(--color-primary);
  border: 1px solid var(--color-primary);
  border-radius: 11px;
  font-weight: 600;
  line-height: 1.3;
  box-shadow: none;
  transition: background var(--transition-fast), border-color var(--transition-fast);
}
body.site-page .site-button:hover,
body.site-page .btn-primary:hover { background: var(--color-primary-dark); border-color: var(--color-primary-dark); }
body.site-page .site-button-small { min-height: 44px; padding: 9px 16px; font-size: 14px; }

body.site-page:not(.home-page) main { min-height: 52vh; background: var(--color-background); }
body.site-page:not(.home-page) .hero-section {
  height: auto !important;
  min-height: 0;
  padding: 68px 0 48px;
  color: var(--color-text);
  background: var(--color-surface-soft) !important;
}
body.site-page:not(.home-page) .hero-section > .container > .row,
body.site-page:not(.home-page) .hero-section .container > .row,
body.site-page:not(.home-page) .hero-section .hero-text {
  height: auto !important;
  min-height: 0 !important;
  margin-top: 0 !important;
  transform: none !important;
}
body.site-page:not(.home-page) .hero-section .wave { display: none; }
body.site-page:not(.home-page) .hero-section .hero-text { width: 100%; max-width: 780px; margin: 0 auto; text-align: center; }
body.site-page:not(.home-page) .hero-section h1 { margin: 0 0 14px; color: var(--color-text) !important; font-size: clamp(2rem, 4.5vw, 2.8rem); line-height: 1.15; text-transform: none; overflow-wrap: anywhere; }
body.site-page:not(.home-page) .hero-section p { margin: 0 auto; color: var(--color-text-soft) !important; font-size: 17px; }
body.site-page:not(.home-page) .section,
body.site-page:not(.home-page) .site-section { padding-top: 72px; padding-bottom: 72px; background: var(--color-background); }
body.site-page:not(.home-page) .section:nth-of-type(even) { background: var(--color-surface-soft); }
body.site-page [data-aos] { opacity: 1 !important; transform: none !important; }

body.page-application,
body.page-appointment {
  --fa-text: var(--color-text);
  --fa-muted: var(--color-text-soft);
  --fa-accent: var(--color-primary);
  --fa-accent2: var(--color-primary-dark);
}
body.page-application .fa-badge,
body.page-appointment .fa-badge { color: var(--color-primary); background: #edf1f7; border-color: #d8e0eb; }
body.page-application .hero-section .btn-fa,
body.page-appointment .hero-section .btn-fa { color: var(--color-primary) !important; background: #fff !important; border-color: #b8c4d7 !important; box-shadow: none !important; }
body.page-application .hero-section .btn-fa:hover,
body.page-appointment .hero-section .btn-fa:hover { color: #fff !important; background: var(--color-primary) !important; }
body.page-application .fa-card,
body.page-appointment .fa-card { background: #fff !important; border-color: var(--color-border) !important; box-shadow: var(--shadow-sm) !important; }
body.page-application .fa-card h2,
body.page-appointment .fa-card h2 { color: var(--color-text) !important; }
body.page-application .small-help,
body.page-appointment .small-help { color: var(--color-text-soft) !important; }
body.page-application input:not([type="checkbox"]):not([type="radio"]),
body.page-application select,
body.page-application textarea,
body.page-appointment input:not([type="checkbox"]):not([type="radio"]),
body.page-appointment select,
body.page-appointment textarea { color: var(--color-text) !important; background: #fff !important; border-color: #cbd3df !important; }
body.page-application input::placeholder,
body.page-application textarea::placeholder,
body.page-appointment input::placeholder,
body.page-appointment textarea::placeholder { color: #7b8696 !important; opacity: 1; }
body.page-success .fa-card h2 { color: var(--color-text) !important; }
body.page-success .fa-card p { color: var(--color-text-soft) !important; }

body.page-lgs-counter .fa-heroCard h2,
body.page-obp-calculator .fa-heroCard h2,
body.page-lgs-counter .fa-heroCard p,
body.page-obp-calculator .fa-heroCard p { color: #fff !important; }
body.page-lgs-counter .fa-heroCard,
body.page-obp-calculator .fa-heroCard { box-shadow: var(--shadow-md) !important; }
body.page-exam-calendar .hero { margin-top: 0; }
body.page-exam-calendar .hero h2 { color: #fff; }
body.page-contact .section.border-top { display: none; }
body.site-page:not(.home-page) .fa-card,
body.site-page:not(.home-page) .fa-contact-card,
body.site-page:not(.home-page) .fa-media-card,
body.site-page:not(.home-page) .calculator-card,
body.site-page:not(.home-page) .card {
  color: var(--color-text);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
body.site-page:not(.home-page) .fa-card h2,
body.site-page:not(.home-page) .fa-card h3,
body.site-page:not(.home-page) .card h2,
body.site-page:not(.home-page) .card h3 { color: var(--color-text); }
body.site-page:not(.home-page) .fa-card p,
body.site-page:not(.home-page) .card p { color: var(--color-text-soft); }

body.site-page input:not([type="checkbox"]):not([type="radio"]):not([type="range"]),
body.site-page select,
body.site-page textarea {
  min-height: 48px;
  color: var(--color-text);
  background-color: #fff;
  border: 1px solid #cbd3df;
  border-radius: 10px;
  font-size: 16px;
}
body.site-page textarea { min-height: 110px; }
body.site-page input:focus,
body.site-page select:focus,
body.site-page textarea:focus { border-color: var(--color-primary); box-shadow: 0 0 0 4px rgba(32, 59, 112, .12); outline: 0; }
body.site-page label { color: var(--color-text); font-weight: 600; }
body.site-page input:disabled,
body.site-page select:disabled,
body.site-page textarea:disabled { color: #7d8796; background: #edf0f4; cursor: not-allowed; }
body.site-page .alert { border-radius: var(--radius-md); border-width: 1px; }
body.site-page .table-responsive { overflow-x: auto; overscroll-behavior-inline: contain; }
body.site-page table { color: var(--color-text); }
body.site-page table th { white-space: nowrap; }

/* Surface contracts: prevent legacy page colors from leaking across surfaces. */
body.site-page .surface-light {
  color: var(--color-text) !important;
  background-color: var(--color-surface) !important;
}
body.site-page .surface-light :is(h1, h2, h3, h4, h5, h6) { color: var(--color-heading) !important; }
body.site-page .surface-light :is(p, li, label, .helper-text, .description, .small-help) { color: var(--color-text-soft) !important; }
body.site-page .surface-light :is(b, strong) { color: var(--color-text) !important; }
body.site-page .surface-dark {
  color: #fff !important;
  background-color: var(--color-primary-dark);
}
body.site-page .surface-dark :is(h1, h2, h3, h4, h5, h6) { color: #fff !important; }
body.site-page .surface-dark :is(p, li, label, .helper-text, .description, .small-help) { color: rgba(255,255,255,.78) !important; }
body.site-page .surface-dark :is(b, strong) { color: #fff !important; }

/* OBP: shared light cards were still carrying the old dark-theme text palette. */
body.page-obp-calculator .surface-light :is(.fa-pill, .fa-miniNote, .resultSub, .tag, .cardMeta, .k) { color: var(--color-text-soft) !important; }
body.page-obp-calculator .surface-light :is(.resultBig, .cardTitle, .fa-cardTitle h2, th, td) { color: var(--color-text) !important; }
body.page-obp-calculator .surface-light :is(.fa-pill, .fa-miniNote, .resultBox, .barWrap, table.fa-table, .tag) {
  background: var(--color-surface-soft) !important;
  border-color: var(--color-border) !important;
}
body.page-obp-calculator .surface-light .fa-field :is(input, select),
body.page-obp-calculator .surface-light #district {
  color: var(--color-text) !important;
  background: #fff !important;
  border-color: #cbd3df !important;
}
body.page-obp-calculator .surface-light #district { appearance: auto; padding-right: 12px; }
body.page-obp-calculator .surface-light #district option { color: var(--color-text) !important; background: #fff !important; }
body.page-obp-calculator .surface-light .fa-field input::placeholder { color: #7b8696 !important; opacity: 1; }
body.page-obp-calculator .surface-light table.fa-table th { background: #edf1f6 !important; }
body.page-obp-calculator .surface-light table.fa-table :is(th, td) { border-color: var(--color-border) !important; }
body.page-obp-calculator .surface-light [style*="color:#fff"] { color: var(--color-text) !important; }
body.page-obp-calculator .surface-light .fa-btn { color: #fff !important; background: var(--color-primary) !important; border-color: var(--color-primary) !important; box-shadow: none; }
body.page-obp-calculator .surface-light .fa-btn.ghost { color: var(--color-primary) !important; background: #fff !important; border-color: #b8c4d7 !important; }

/* LGS counter: its former dark palette must not leak into shared light cards. */
body.page-lgs-counter .fa-chipRow-compact,
body.page-obp-calculator .fa-chipRow-compact { margin-top: 0; }
body.page-lgs-counter .surface-light :is(.fa-pill, .timeLbl, .fa-miniNote, .statsRow, .taskDesc, .focusHint, .quoteSub, .spark small) { color: var(--color-text-soft) !important; }
body.page-lgs-counter .surface-light :is(.timeNum, .taskTitle, .focusTimer, .quoteText, .sparkTop b, .spark .big) { color: var(--color-text) !important; }
body.page-lgs-counter .surface-light :is(.fa-pill, .timeBox, .fa-miniNote, .task, .focusBox, .quote, .spark, .barWrap) {
  background: var(--color-surface-soft) !important;
  border-color: var(--color-border) !important;
}
body.page-lgs-counter .surface-light .fa-field :is(input, select, textarea) {
  color: var(--color-text) !important;
  background: #fff !important;
  border-color: #cbd3df !important;
}
body.page-lgs-counter .surface-light .fa-field :is(input, textarea)::placeholder { color: #7b8696 !important; opacity: 1; }
body.page-lgs-counter .surface-light .fa-btn { color: #fff !important; background: var(--color-primary) !important; border-color: var(--color-primary) !important; box-shadow: none; }
body.page-lgs-counter .surface-light .fa-btn.ghost { color: var(--color-primary) !important; background: #fff !important; border-color: #b8c4d7 !important; }
body.page-lgs-counter .surface-light .task input[type="checkbox"] { accent-color: var(--color-primary); }
body.page-lgs-counter .surface-light .badge { color: var(--color-text) !important; background: #edf1f6 !important; border-color: var(--color-border) !important; }
body.page-lgs-counter .surface-light .badge.good { color: #17663e !important; background: #edf8f2 !important; border-color: #b9dfc9 !important; }
body.page-lgs-counter .surface-light .badge.warn { color: #805200 !important; background: #fff8e7 !important; border-color: #ead29a !important; }
body.page-lgs-counter .surface-light .sparkRow { grid-template-columns: 1fr; }

/* Retired result URL: a calm notice without redirecting the visitor. */
body.page-retired-service .retired-service-hero { min-height: calc(100vh - 70px); display: grid; place-items: center; padding: clamp(4rem, 10vw, 8rem) 0; background: var(--color-surface-soft); }
body.page-retired-service .retired-service-card { width: min(680px, 100%); padding: clamp(2rem, 6vw, 3.5rem); text-align: center; border: 1px solid var(--color-border); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
body.page-retired-service .retired-service-card h1 { margin: .75rem 0 1rem; font-size: clamp(2rem, 5vw, 2.8rem); line-height: 1.15; }
body.page-retired-service .retired-service-icon { display: grid; place-items: center; width: 52px; height: 52px; margin: 0 auto 1rem; color: var(--color-primary); background: #edf1f7; border-radius: 50%; font-size: 24px; }
body.page-retired-service .retired-service-actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-top: 1.75rem; }
body.page-retired-service .site-button-secondary { color: var(--color-primary) !important; background: #fff; border-color: #b8c4d7; }

/* Result query and multiplication game stay deliberately dark. */
body.page-results .surface-dark .fa-wg-content :is(h1, h2) { color: #fff !important; }
body.page-results .surface-dark .fa-wg-content h2 { margin: 10px 0 8px; font-size: clamp(1.5rem, 3vw, 2rem); line-height: 1.2; }
body.page-results .surface-dark :is(.fa-wg-title, .fa-wg-cdTitle, .fa-wg-q) { color: #fff; }
body.page-results .surface-dark :is(.fa-wg-sub, .fa-wg-cdNote, .fa-wg-foot) { color: rgba(255,255,255,.74) !important; }
body.page-results .fa-wg-title { white-space: nowrap; }

/* Calendar: replace the legacy dark application shell with shared light surfaces. */
body.page-exam-calendar .wrap { padding: 0; }
body.page-exam-calendar .panel {
  color: var(--color-text) !important;
  background: #fff !important;
  border-color: var(--color-border) !important;
  box-shadow: var(--shadow-sm) !important;
}
body.page-exam-calendar .panel :is(h2, h3, .gateTitle) { color: var(--color-heading) !important; }
body.page-exam-calendar .panel :is(label, .meta, .printHint, .gateDesc, .gateHint, .cardMeta, .k) { color: var(--color-text-soft) !important; }
body.page-exam-calendar .panel :is(input, select) {
  color: var(--color-text) !important;
  background: #fff !important;
  border-color: #cbd3df !important;
}
body.page-exam-calendar .panel input::placeholder { color: #7b8696 !important; opacity: 1; }
body.page-exam-calendar .panel :is(input, select):focus {
  border-color: var(--color-primary) !important;
  box-shadow: 0 0 0 4px rgba(32,59,112,.12) !important;
}
body.page-exam-calendar .panel .tabs .tab {
  color: var(--color-primary) !important;
  background: #fff !important;
  border-color: #b8c4d7 !important;
}
body.page-exam-calendar .panel .tabs .tab.active {
  color: #fff !important;
  background: var(--color-primary) !important;
  border-color: var(--color-primary) !important;
}
body.page-exam-calendar .panel button {
  color: #fff !important;
  background: var(--color-primary) !important;
  border-color: var(--color-primary) !important;
  box-shadow: none !important;
}
body.page-exam-calendar .panel button:is(.secondary, .ghost, .linkBtn) {
  color: var(--color-primary) !important;
  background: #fff !important;
  border-color: #b8c4d7 !important;
}
body.page-exam-calendar .panel button.linkBtn { min-height: 44px; padding-inline: 12px; text-decoration: underline; }
body.page-exam-calendar .panel .gate {
  background: var(--color-surface-soft) !important;
  border-color: var(--color-border) !important;
}
body.page-exam-calendar .panel .state {
  color: var(--color-text-soft) !important;
  background: var(--color-surface-soft) !important;
  border-color: #cbd3df !important;
}
body.page-exam-calendar .panel .state.error {
  color: var(--color-danger) !important;
  background: #fef3f2 !important;
  border-color: #f2c1bd !important;
}
body.page-exam-calendar .panel .card {
  color: var(--color-text) !important;
  background: #fff !important;
  border-color: var(--color-border) !important;
  box-shadow: var(--shadow-sm) !important;
}
body.page-exam-calendar .panel .card :is(.cardTitle, .cardMeta, .k, .desc) { color: var(--color-text) !important; }
body.page-exam-calendar .panel .card :is(.cardMeta, .k) { color: var(--color-text-soft) !important; }
body.page-exam-calendar .panel .card .desc { background: var(--color-surface-soft) !important; border-color: var(--color-border) !important; }
body.page-exam-calendar .panel .card .chip:not(.ok):not(.no) { color: var(--color-text) !important; background: #edf1f6 !important; border-color: var(--color-border) !important; }
body.page-exam-calendar .panel .card .chip.ok { color: #17663e !important; background: #edf8f2 !important; border-color: #b9dfc9 !important; }
body.page-exam-calendar .panel .card .chip.no { color: var(--color-danger) !important; background: #fef3f2 !important; border-color: #f2c1bd !important; }

/* Form pages: old translucent dark controls sat on the new light cards. */
body.page-application .surface-light .fa-kvkk-row,
body.page-appointment .surface-light .fa-miniBox {
  color: var(--color-text) !important;
  background: var(--color-surface-soft) !important;
  border-color: var(--color-border) !important;
}
body.page-application .surface-light .fa-kvkk-row a,
body.page-appointment .surface-light .kvkk-link { color: var(--color-primary) !important; }
body.page-application .surface-light .form-check-input,
body.page-appointment .surface-light .form-check-input { background-color: #fff !important; border-color: #9ba8ba !important; }
body.page-application .surface-light .form-check-input:checked,
body.page-appointment .surface-light .form-check-input:checked { background-color: var(--color-primary) !important; border-color: var(--color-primary) !important; }
body.page-application .surface-light .btn-primary,
body.page-appointment .surface-light .btn-primary { color: #fff !important; background: var(--color-primary) !important; border-color: var(--color-primary) !important; box-shadow: none; }
body.page-application .surface-light .btn-outline-primary,
body.page-appointment .surface-light .btn-outline-primary { color: var(--color-primary) !important; background: #fff !important; border-color: #b8c4d7 !important; }
body.page-application .surface-light .invalid-feedback,
body.page-appointment .surface-light .invalid-feedback { color: var(--color-danger) !important; }
body.page-application .surface-light .alert-success,
body.page-appointment .surface-light .alert-success { color: #17663e !important; background: #edf8f2 !important; border-color: #b9dfc9 !important; }
body.page-application .surface-light .alert-warning,
body.page-appointment .surface-light .alert-warning { color: #805200 !important; background: #fff8e7 !important; border-color: #ead29a !important; }
body.page-application .surface-light .alert-danger,
body.page-appointment .surface-light .alert-danger { color: var(--color-danger) !important; background: #fef3f2 !important; border-color: #f2c1bd !important; }
body.page-application input[type="date"],
body.page-appointment input[type="date"] { color-scheme: light; }
body.page-application input[type="date"]::-webkit-calendar-picker-indicator,
body.page-appointment input[type="date"]::-webkit-calendar-picker-indicator { filter: none; opacity: 1; }

/* Success page: override broad legacy heading/review rules on light content. */
body.page-success .surface-light.review { background: #fff !important; border-color: var(--color-border) !important; box-shadow: var(--shadow-sm); }
body.page-success .surface-light.review :is(h3, blockquote p, .review-user span, .review-user .text-black) { color: var(--color-text) !important; }
body.page-success .surface-light.review blockquote p { color: var(--color-text-soft) !important; }
body.page-success .section-heading {
  color: var(--color-heading) !important;
  background: none;
  -webkit-text-fill-color: currentColor;
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  line-height: 1.15;
}
body.page-success .section { padding-top: clamp(3rem, 6vw, 5rem); padding-bottom: clamp(3rem, 6vw, 5rem); }

@media (max-width: 600px) {
  body.site-page .site-whatsapp { right: 14px; bottom: 14px; width: 50px; height: 50px; }
  body.page-obp-calculator .fa-rightTools { width: 100%; justify-content: stretch; }
  body.page-obp-calculator .fa-rightTools .fa-btn { flex: 1 1 150px; }
  body.page-results .fa-wg-gameTop { align-items: flex-start; }
  body.page-results .fa-wg-title { width: 100%; }
  body.page-results .fa-wg-stats { justify-content: flex-start; }
  body.page-success .section { padding-top: 3rem; padding-bottom: 3rem; }
}

body.site-page .site-footer { padding: 68px 0 0; color: #cad2df; background: #101b31; }
body.site-page .site-footer-grid { display: grid; grid-template-columns: 1.35fr .9fr .9fr 1fr 1.2fr; gap: 34px; }
body.site-page .site-footer .site-brand { color: #fff !important; }
body.site-page .site-footer-brand p { max-width: 310px; margin: 15px 0 20px; color: #cad2df; }
body.site-page .site-footer h2 { margin: 0 0 17px; color: #fff; font-size: 15px; }
body.site-page .site-footer ul { margin: 0; padding: 0; list-style: none; }
body.site-page .site-footer li { margin: 8px 0; }
body.site-page .site-footer a { color: #cad2df !important; font-size: 14px; }
body.site-page .site-footer a:hover { color: #fff !important; }
body.site-page .site-footer-contact { display: flex; flex-direction: column; align-items: flex-start; }
body.site-page .site-footer address { margin: 0 0 10px; color: #cad2df; font-style: normal; font-size: 14px; }
body.site-page .site-social-links { display: flex; gap: 8px; }
body.site-page .site-social-links a { display: grid; place-items: center; width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.15); border-radius: 9px; }
body.site-page .site-footer-bottom { margin-top: 52px; padding: 20px 0; border-top: 1px solid rgba(255,255,255,.1); }
body.site-page .site-footer-bottom p { margin: 0; color: #aeb8c8; font-size: 13px; }
body.site-page .site-whatsapp { position: fixed; z-index: 900; right: 20px; bottom: 20px; display: grid; place-items: center; width: 54px; height: 54px; color: #fff !important; background: var(--color-success); border: 3px solid #fff; border-radius: 50%; box-shadow: 0 8px 24px rgba(16,40,28,.24); font-size: 25px; }
body.site-page .back-to-top { display: none !important; }

@media (max-width: 1050px) {
  body.site-page .site-navigation { gap: 10px; }
  body.site-page .site-nav-link, body.site-page .site-dropdown-toggle { padding-inline: 8px; font-size: 14px; }
  body.site-page .site-footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
  body.site-page .site-footer-contact { grid-column: 2 / 4; }
}

@media (max-width: 960px) {
  body.site-page.site-menu-open { overflow: hidden; }
  body.site-page .site-header { height: 70px; }
  body.site-page .site-menu-toggle { display: block; }
  body.site-page .site-navigation { position: fixed; inset: 70px 0 0; display: block; padding: 18px 20px 32px; visibility: hidden; opacity: 0; overflow-y: auto; background: #fff; transform: translateX(100%); transition: transform var(--transition-normal), opacity var(--transition-normal), visibility var(--transition-normal); }
  body.site-page .site-navigation.is-open { visibility: visible; opacity: 1; transform: translateX(0); }
  body.site-page .site-nav-list { display: block; }
  body.site-page .site-nav-link, body.site-page .site-dropdown-toggle { width: 100%; justify-content: space-between; min-height: 50px; padding-inline: 12px; font-size: 16px; text-align: left; }
  body.site-page .site-dropdown-menu { position: static; width: 100%; max-height: 0; padding: 0 0 0 14px; opacity: 1; overflow: hidden; transform: none; background: var(--color-surface-soft); border: 0; box-shadow: none; transition: max-height var(--transition-normal), padding var(--transition-normal); }
  body.site-page .site-dropdown.is-open .site-dropdown-menu { max-height: 330px; padding-top: 7px; padding-bottom: 7px; }
  body.site-page .site-dropdown-menu a { padding: 10px 12px; font-size: 15px; }
  body.site-page .site-nav-appointment { width: 100%; margin-top: 18px; }
  body.site-page:not(.home-page) .hero-section { padding: 54px 0 40px; }
  body.site-page:not(.home-page) .section, body.site-page:not(.home-page) .site-section { padding-top: 56px; padding-bottom: 56px; }
  body.site-page .site-footer-grid { grid-template-columns: repeat(2, 1fr); }
  body.site-page .site-footer-contact { grid-column: auto; }
}

@media (max-width: 600px) {
  body.site-page .container { width: min(calc(100% - 32px), var(--container-width)); }
  body.site-page .site-footer-grid { grid-template-columns: 1fr; gap: 34px; }
  body.site-page .site-footer { padding-top: 52px; }
  body.site-page .site-footer-contact { grid-column: auto; }
  body.site-page .site-whatsapp { right: 14px; bottom: 14px; width: 50px; height: 50px; }
}

@media print {
  body.site-page .site-header,
  body.site-page .site-footer,
  body.site-page .site-whatsapp,
  body.site-page .back-to-top { display: none !important; }
  body.site-page { color: #000; background: #fff; }
  body.site-page main { min-height: 0; }
  body.site-page .card, body.site-page .fa-card { box-shadow: none; break-inside: avoid; }
}

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