:root {
  --hf-orange: #d66700;
  --hf-orange-dark: #a94d00;
  --hf-ink: #24170e;
  --hf-muted: #6b5543;
  --hf-line: rgba(244, 122, 0, .22);
  --hf-surface: #ffffff;
  --hf-soft: #fff7ed;
  --hf-shadow: 0 18px 42px rgba(120, 70, 20, .10);
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--hf-ink);
  background:
    radial-gradient(circle at 12% 6%, rgba(244, 122, 0, .16), transparent 30%),
    radial-gradient(circle at 88% 16%, rgba(255, 186, 101, .22), transparent 28%),
    linear-gradient(180deg, #fffaf4 0%, #fff2e4 55%, #ffe0b8 100%) fixed;
}

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

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

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 40px;
  background: rgba(255, 255, 255, .98);
  border-bottom: 1px solid var(--hf-line);
  box-shadow: 0 14px 34px rgba(120, 70, 20, .08);
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--hf-ink);
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
}

.site-logo img {
  width: 64px;
}

.site-logo b {
  color: var(--hf-orange);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.site-nav a,
.site-language-select {
  min-height: 54px;
  padding: 13px 16px;
  border: 1px solid var(--hf-line);
  border-radius: 8px;
  background: var(--hf-surface);
  color: var(--hf-ink);
  font: inherit;
  font-size: 15px;
  font-weight: 800;
}

.site-nav a:hover,
.site-nav a.active {
  border-color: rgba(244, 122, 0, .55);
  background: #fff2df;
}

.hf-language-menu {
  position: relative;
  min-width: 190px;
}

.hf-language-native {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
}

.hf-language-button {
  width: 100%;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 11px;
  padding: 10px 12px;
  border: 1px solid var(--hf-line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--hf-ink);
  box-shadow: 0 10px 20px rgba(120, 70, 20, .06);
  font: inherit;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
}

.hf-language-button:hover,
.hf-language-menu.is-open .hf-language-button {
  border-color: rgba(230, 106, 0, .55);
  background: #fff7ed;
}

.hf-language-chevron {
  margin-left: auto;
  color: #a94d00;
  font-size: 18px;
  line-height: 1;
}

.hf-language-list {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 40;
  width: min(280px, 88vw);
  padding: 8px;
  border: 1px solid rgba(230, 106, 0, .18);
  border-radius: 12px;
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 18px 44px rgba(17, 17, 17, .16);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
}

.hf-language-menu.is-open .hf-language-list {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.hf-language-list button {
  width: 100%;
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 9px 10px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #111111;
  box-shadow: none;
  font: inherit;
  font-size: 15px;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.hf-language-list button:hover,
.hf-language-list button.is-active {
  background: #fff2df;
  color: #a94d00;
}

.hf-flag {
  position: relative;
  width: 28px;
  min-width: 28px;
  height: 20px;
  display: inline-block;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid rgba(17, 17, 17, .16);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .18);
}

.hf-flag-de {
  background: linear-gradient(#111 0 33.33%, #dd0000 33.33% 66.66%, #ffce00 66.66%);
}

.hf-flag-gb {
  background:
    linear-gradient(27deg, transparent 43%, #fff 43% 48%, #c8102e 48% 53%, #fff 53% 58%, transparent 58%),
    linear-gradient(153deg, transparent 43%, #fff 43% 48%, #c8102e 48% 53%, #fff 53% 58%, transparent 58%),
    linear-gradient(#012169 0 38%, #fff 38% 45%, #c8102e 45% 55%, #fff 55% 62%, #012169 62%),
    linear-gradient(90deg, #012169 0 36%, #fff 36% 44%, #c8102e 44% 56%, #fff 56% 64%, #012169 64%);
}

.hf-flag-tr {
  background: #e30a17;
}

.hf-flag-tr::before {
  content: "";
  position: absolute;
  width: 11px;
  height: 11px;
  left: 7px;
  top: 4px;
  border-radius: 50%;
  box-shadow: -3px 0 0 2px #ffffff;
}

.hf-flag-tr::after {
  content: "";
  position: absolute;
  left: 19px;
  top: 7px;
  width: 5px;
  height: 5px;
  background: #ffffff;
  clip-path: polygon(50% 0, 61% 34%, 98% 34%, 68% 55%, 79% 91%, 50% 68%, 21% 91%, 32% 55%, 2% 34%, 39% 34%);
}

.hf-flag-sa {
  background: #006c35;
}

.hf-flag-sa::before {
  content: "";
  position: absolute;
  left: 7px;
  right: 7px;
  top: 11px;
  height: 2px;
  background: #ffffff;
}

.hf-flag-uk {
  background: linear-gradient(#0057b7 0 50%, #ffd700 50%);
}

.hf-flag-ru {
  background: linear-gradient(#ffffff 0 33.33%, #0039a6 33.33% 66.66%, #d52b1e 66.66%);
}

.site-nav .nav-btn,
.btn-primary,
button,
input[type="submit"],
.submit-btn,
.btn-main,
.profile-btn {
  background: linear-gradient(180deg, #ff9820 0%, var(--hf-orange) 100%);
  color: #fff;
  border-color: rgba(200, 95, 0, .35);
  box-shadow: 0 14px 28px rgba(230, 106, 0, .28);
  font-weight: 900;
}

.hf-social-link {
  width: 54px;
  min-width: 54px;
  height: 54px;
  min-height: 54px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  box-shadow: 0 10px 20px rgba(120, 70, 20, .06);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}

.hf-social-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 24px rgba(120, 70, 20, .12);
}

.hf-social-link svg {
  width: 48px;
  height: 48px;
  display: block;
}

.hf-instagram-link svg {
  width: 50px;
  height: 50px;
}

.hf-tiktok-link svg {
  width: 50px;
  height: 50px;
  transform: scale(1.28);
  transform-origin: center;
}

.hf-facebook-link {
  background: #fff;
  border: 1px solid rgba(24, 119, 242, .18);
}

.hf-instagram-link {
  color: #fff;
  background: linear-gradient(135deg, #feda75 0%, #fa7e1e 30%, #d62976 62%, #962fbf 100%);
  border: 1px solid transparent;
}

.hf-instagram-link:hover {
  color: #fff;
  background: linear-gradient(135deg, #feda75 0%, #fa7e1e 30%, #d62976 62%, #962fbf 100%);
  border-color: transparent;
}

.hf-tiktok-link {
  color: #fff;
  background: #101820;
  border: 1px solid transparent;
}

.hf-tiktok-link:hover {
  color: #fff;
  background: #101820;
  border-color: transparent;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  text-align: center;
  cursor: pointer;
}

.btn-secondary,
.btn:not(.btn-primary):not(.orange):not(.reject):not(.whatsapp) {
  background: var(--hf-surface);
  color: var(--hf-orange-dark);
  border-color: var(--hf-line);
}

.btn.orange,
.btn.primary {
  background: linear-gradient(180deg, #ff9820 0%, var(--hf-orange) 100%);
  color: #fff;
  border-color: rgba(200, 95, 0, .35);
}

input,
textarea,
select {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid rgba(244, 122, 0, .32);
  border-radius: 8px;
  background: #fff;
  color: var(--hf-ink);
  font: inherit;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--hf-orange);
  box-shadow: 0 0 0 3px rgba(244, 122, 0, .14);
}

.category-check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 8px;
}

.category-check {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 13px;
  border: 1px solid rgba(244, 122, 0, .28);
  border-radius: 8px;
  background: #fff;
  color: var(--hf-ink);
  font-weight: 800;
  cursor: pointer;
  transition: border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

.cat-mark {
  width: 64px;
  min-width: 64px;
  height: 64px;
  display: inline-grid;
  place-items: center;
  border-radius: 12px;
  background: #fff7ed;
  color: var(--hf-orange-dark);
  border: 1px solid rgba(214, 103, 0, .24);
  font-size: 15px;
  line-height: 1;
  overflow: hidden;
}

.cat-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.category-check:hover {
  border-color: rgba(214, 103, 0, .55);
  background: #fff7ed;
}

.category-check input {
  width: 20px;
  min-width: 20px;
  height: 20px;
  min-height: 20px;
  margin: 0;
  accent-color: var(--hf-orange);
  cursor: pointer;
}

.category-check:has(input:checked) {
  border-color: var(--hf-orange);
  background: #fff2df;
  box-shadow: 0 0 0 3px rgba(214, 103, 0, .12);
}

.category-check:has(input:checked) .cat-mark {
  background: #fff7ed;
  border-color: var(--hf-orange);
  box-shadow: 0 0 0 2px rgba(214, 103, 0, .18);
}

.category-check:has(input:focus-visible) {
  box-shadow: 0 0 0 3px rgba(214, 103, 0, .22);
}

.form-notice,
.trust-note {
  padding: 14px 16px;
  border: 1px solid rgba(214, 103, 0, .28);
  border-radius: 8px;
  background: #fff7ed;
  color: var(--hf-ink);
  line-height: 1.5;
  font-weight: 800;
}

.form-notice {
  margin: 0 0 20px;
}

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

.home-main,
.page-wrap,
.container,
.list,
.profile-container,
.auth-page,
.reg-page,
.login-page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 54px 22px 38px;
}

.home-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, .88fr);
  gap: 28px;
  align-items: stretch;
}

.home-hero-copy,
.hero-visual,
.quick-search,
.trust-grid article,
.steps-grid article,
.category-grid a,
.split-section,
.final-cta,
.card,
.box,
.login-card,
.register-box,
.form-box,
.info-box,
.empty,
.filter-box,
.search,
.order-card,
.auftrag-card,
.application-card,
.profile-card,
.stat-card,
.choice-card,
.auth-card,
.auth-hero,
.reg-panel,
.signin-card,
.brand-card {
  background: rgba(255, 255, 255, .92);
  border: 1px solid var(--hf-line);
  border-radius: 8px;
  box-shadow: var(--hf-shadow);
  color: var(--hf-ink);
}

.home-hero-copy {
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 50px 54px;
  position: relative;
  overflow: hidden;
}

.home-hero-copy::after {
  content: "";
  position: absolute;
  right: -78px;
  bottom: -96px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(244, 122, 0, .14), rgba(255, 186, 101, .06));
}

.home-hero-copy > * {
  position: relative;
  z-index: 1;
}

.eyebrow,
.section-kicker,
.badge,
.auth-badge {
  width: max-content;
  max-width: 100%;
  margin: 0 0 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--hf-soft);
  color: var(--hf-orange-dark);
  border: 1px solid var(--hf-line);
  font-size: 14px;
  font-weight: 900;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
.page-title {
  color: var(--hf-orange);
  font-weight: 900;
}

.home-hero h1 {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: clamp(42px, 3.35vw, 58px);
  line-height: 1.04;
}

.hero-lead {
  max-width: 640px;
  margin-bottom: 30px;
  color: var(--hf-muted);
  font-size: 20px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-visual {
  display: grid;
  gap: 18px;
  padding: 18px;
  background:
    linear-gradient(145deg, rgba(36, 23, 14, .96), rgba(83, 43, 13, .94)),
    var(--hf-ink);
  color: #fff;
}

.visual-card {
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
  box-shadow: 0 20px 48px rgba(0, 0, 0, .18);
}

.visual-card-main {
  min-height: 278px;
  padding: 24px;
}

.team-photo-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
  box-shadow: 0 20px 48px rgba(0, 0, 0, .18);
}

.team-photo-card img {
  width: 100%;
  aspect-ratio: 767 / 334;
  min-height: 178px;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center;
}

.visual-top {
  display: flex;
  align-items: center;
  gap: 14px;
}

.visual-top img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  border-radius: 8px;
  background: #fff;
}

.visual-top strong {
  display: block;
  margin-bottom: 4px;
  font-size: 22px;
}

.visual-top span {
  color: rgba(255, 255, 255, .72);
  font-size: 14px;
  font-weight: 800;
}

.visual-route {
  display: grid;
  grid-template-columns: 1fr 44px 1fr;
  align-items: center;
  gap: 12px;
  margin: 28px 0;
}

.visual-route span {
  min-height: 58px;
  display: grid;
  place-items: center;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  background: rgba(255, 255, 255, .10);
  text-align: center;
  font-weight: 900;
}

.visual-route b {
  display: block;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 255, 255, .18), #ff9820, rgba(255, 255, 255, .18));
}

.visual-list {
  display: grid;
  gap: 10px;
}

.visual-list p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: rgba(255, 255, 255, .86);
  font-weight: 800;
}

.visual-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #ff9820;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.quick-search {
  padding: 26px;
  background: rgba(255, 255, 255, .96);
}

.quick-search h2 {
  margin-bottom: 20px;
  font-size: 28px;
}

.quick-search label,
.field,
.form-group {
  display: grid;
  gap: 7px;
  margin-bottom: 14px;
  font-weight: 900;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.trust-grid article,
.steps-grid article {
  padding: 22px;
}

.trust-grid h3,
.steps-grid span {
  color: var(--hf-orange);
  font-size: 22px;
  font-weight: 900;
}

.trust-grid h3 {
  margin: 0 0 8px;
  line-height: 1.2;
}

.trust-grid p,
.steps-grid p,
.split-section p,
.final-cta p,
.subtitle,
.desc {
  color: var(--hf-muted);
  line-height: 1.5;
}

.section {
  margin-top: 48px;
}

.section-heading {
  margin-bottom: 18px;
}

.section-heading h2,
.split-section h2,
.final-cta h2 {
  font-size: 34px;
  line-height: 1.15;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.steps-grid span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: linear-gradient(180deg, #ff9a22 0%, #ff8500 100%);
  border: 1px solid rgba(230, 111, 0, .45);
  box-shadow: 0 8px 18px rgba(255, 133, 0, .22);
  color: #fff;
  font-size: 18px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.category-grid a {
  min-height: 150px;
  display: grid;
  gap: 10px;
  align-items: center;
  justify-content: center;
  padding: 18px;
  color: var(--hf-ink);
  font-weight: 900;
  text-align: center;
}

.cat-icon {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  margin: 0 auto;
}

.cat-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.category-grid a:hover {
  border-color: rgba(244, 122, 0, .55);
  background: #fff2df;
}

.split-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 48px;
  padding: 30px;
}

.split-section p {
  max-width: 680px;
  margin-bottom: 0;
}

.final-cta {
  margin-top: 28px;
  padding: 36px 24px;
  text-align: center;
}

.final-cta p {
  max-width: 620px;
  margin: 0 auto 20px;
}

.grid,
.cards,
.card-grid,
.orders-grid,
.profile-grid,
.dashboard-grid,
.stats,
.form-grid,
.choice-grid,
.auth-wrap,
.reg-shell,
.login-wrap,
.info-grid,
.order-meta {
  display: grid;
  gap: 18px;
}

.reg-shell,
.auth-wrap,
.login-wrap {
  grid-template-columns: minmax(0, 1fr) minmax(360px, .9fr);
  align-items: stretch;
}

.reg-panel,
.auth-card,
.signin-card,
.brand-card {
  padding: 32px;
}


.brand-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  font-size: 30px;
  font-weight: 900;
}

.brand-row img {
  width: 72px;
}

.brand-row span,
.accent {
  color: var(--hf-orange);
}

.reg-hero h1,
.auth-hero h1,
.brand-card h1 {
  color: var(--hf-orange);
  font-size: 44px;
  line-height: 1.08;
}

.reg-form-panel h2,
.auth-card h2,
.signin-card h2 {
  font-size: 32px;
  line-height: 1.15;
}

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

.field.full,
.form-group.full {
  grid-column: 1 / -1;
}

.search .form-grid {
  grid-template-columns: minmax(180px, 1fr) minmax(150px, .7fr) minmax(160px, .8fr) auto;
  align-items: end;
}

.grid,
.cards,
.card-grid,
.orders-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.card,
.box,
.search,
.empty {
  padding: 24px;
}

.card-logo,
.profile-logo,
.logo-placeholder {
  width: 82px;
  height: 82px;
  object-fit: contain;
  border: 1px solid var(--hf-line);
  border-radius: 8px;
  background: #fff;
}

.badge {
  display: inline-flex;
  margin-bottom: 0;
  background: linear-gradient(180deg, #ff9820 0%, var(--hf-orange) 100%);
  color: #fff;
}

.actions,
.action-btns,
.card-actions,
.top-actions,
.quick-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hf-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 28px 18px;
  background: #fff;
  border-top: 1px solid var(--hf-line);
  color: var(--hf-muted);
  font-size: 14px;
}

.hf-footer a {
  color: var(--hf-orange-dark);
  font-weight: 800;
}

.hf-footer-socials {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
}

.hf-footer-social-link {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(244, 122, 0, .20);
  border-radius: 8px;
  background: var(--hf-soft);
  color: #24170e;
  box-shadow: 0 10px 20px rgba(120, 70, 20, .08);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.hf-footer-social-link svg {
  width: 32px;
  height: 32px;
  display: block;
}

.hf-footer-social-link.hf-instagram-link svg,
.hf-footer-social-link.hf-tiktok-link svg {
  width: 34px;
  height: 34px;
}

.hf-footer-social-link.hf-tiktok-link svg {
  transform: scale(1.12);
  transform-origin: center;
}

.hf-footer-social-link:hover {
  transform: translateY(-2px);
  border-color: rgba(230, 106, 0, .42);
  box-shadow: 0 16px 26px rgba(120, 70, 20, .14);
}

@media (max-width: 940px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .home-hero,
  .hero-visual,
  .trust-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .home-hero-copy {
    min-height: auto;
  }

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

  .split-section {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 760px) {
  html,
  body {
    overflow-x: hidden;
  }

  .site-header {
    padding: 12px;
  }

  .site-logo {
    width: 100%;
    justify-content: center;
    font-size: 23px;
  }

  .site-logo img {
    width: 48px;
  }

  .site-nav {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    width: 100%;
    gap: 8px;
  }

  .site-nav a,
  .site-language-select {
    min-width: 0;
    width: 100%;
    min-height: 42px;
    padding: 9px 8px;
    text-align: center;
    font-size: 14px;
  }

  .site-language-select {
    grid-column: 1 / -1;
  }

  .hf-social-link {
    justify-self: stretch;
    width: 100%;
    min-width: 0;
    min-height: 54px;
    border-radius: 8px;
  }

  .hf-social-link svg {
    width: 48px;
    height: 48px;
  }

  .home-main,
  .page-wrap,
  .container,
  .list,
  .profile-container,
  .auth-page,
  .reg-page,
  .login-page {
    width: 100%;
    padding: 22px 14px 26px;
  }

  .home-hero-copy,
  .hero-visual,
  .quick-search,
  .split-section,
  .final-cta,
  .card,
  .box,
  .search,
  .empty {
    padding: 20px;
  }

  .home-hero h1,
  h1,
  .page-title {
    max-width: 100%;
    font-size: 30px;
    line-height: 1.1;
    text-align: left;
    overflow-wrap: anywhere;
  }

  .hero-lead {
    font-size: 16px;
    overflow-wrap: anywhere;
  }

  .visual-card-main {
    min-height: auto;
    padding: 18px;
  }

  .visual-top {
    align-items: flex-start;
  }

  .visual-top strong {
    font-size: 20px;
  }

  .visual-top span {
    display: block;
    overflow-wrap: anywhere;
  }

  .visual-route {
    grid-template-columns: 1fr;
    gap: 10px;
    margin: 22px 0;
  }

  .visual-route b {
    width: 2px;
    height: 22px;
    margin: 0 auto;
    background: linear-gradient(180deg, rgba(255, 255, 255, .18), #ff9820, rgba(255, 255, 255, .18));
  }

  .visual-route span,
  .visual-list p,
  .category-grid a {
    overflow-wrap: anywhere;
  }

  .btn,
  button,
  input[type="submit"],
  .hero-actions .btn,
  .quick-search .btn,
  .split-section .btn,
  .final-cta .btn {
    width: 100%;
  }

  .category-grid,
  .category-check-grid,
  .form-grid,
  .choice-grid,
  .auth-wrap,
  .reg-shell,
  .login-wrap,
  .info-grid,
  .order-meta,
  .grid,
  .cards,
  .card-grid,
  .orders-grid,
  .profile-grid,
  .dashboard-grid,
  .stats {
    grid-template-columns: 1fr;
  }

  .actions,
  .action-btns,
  .card-actions,
  .top-actions,
  .quick-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .register-page .reg-page {
    padding-top: 18px;
  }

  .register-page .category-check-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 380px) {
  .site-nav {
    grid-template-columns: 1fr;
  }

  .site-logo {
    font-size: 20px;
  }
}

/* Social icons: fixed button squares with balanced, centered logos. */
.site-nav .hf-social-link {
  width: 54px !important;
  min-width: 54px !important;
  height: 54px !important;
  min-height: 54px !important;
  padding: 0 !important;
  overflow: visible;
  background: #fff;
  border: 1px solid rgba(244, 122, 0, .22);
  box-shadow: 0 8px 18px rgba(120, 70, 20, .06);
}

.site-nav .hf-social-link svg {
  width: 34px !important;
  height: 34px !important;
  display: block;
  transform: none;
  transform-origin: center;
}

.site-nav .hf-facebook-link svg {
  width: 36px !important;
  height: 36px !important;
}

.site-nav .hf-instagram-link svg {
  width: 36px !important;
  height: 36px !important;
}

.site-nav .hf-tiktok-link svg {
  width: 35px !important;
  height: 35px !important;
  color: #24170e;
}

.site-nav .hf-social-link:hover {
  border-color: rgba(244, 122, 0, .5);
  background: #fff7ed;
}

.site-nav .hf-tiktok-link:hover svg {
  color: #f47a00;
}

.site-nav .nav-btn,
.site-nav .nav-btn.active,
.site-nav .cta-link,
.site-nav .cta-link.active {
  background: linear-gradient(180deg, #ff9820 0%, #e66a00 100%);
  color: #ffffff !important;
  border-color: rgba(200, 95, 0, .35);
  box-shadow: 0 14px 28px rgba(230, 106, 0, .28);
}

.site-nav .nav-btn:hover,
.site-nav .cta-link:hover {
  background: linear-gradient(180deg, #ffad3c 0%, #e66a00 100%);
  color: #ffffff !important;
}

.hf-language-menu {
  flex: 0 0 220px;
}

.hf-language-button {
  white-space: nowrap;
}

.contact-page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 56px 18px 72px;
}

.contact-card {
  width: min(100%, 860px);
  margin: 0 auto;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid rgba(230, 106, 0, .20);
  border-radius: 18px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 24px 60px rgba(120, 70, 20, .12);
}

.contact-card .legal-kicker {
  display: inline-flex;
  width: auto;
  margin: 0 0 18px;
  padding: 8px 16px;
  border: 1px solid rgba(230, 106, 0, .30);
  border-radius: 999px;
  background: #fff7ed;
  color: #b65000;
  font-weight: 900;
}

.contact-card h1 {
  margin: 0 0 12px;
  color: #d66700;
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.02;
}

.contact-intro {
  max-width: 620px;
  margin: 0 0 28px;
  color: #5b4739;
  font-size: 18px;
  line-height: 1.55;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form .form-row {
  display: grid;
  gap: 7px;
}

.contact-form label {
  color: #24170e;
  font-size: 16px;
  font-weight: 900;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(230, 106, 0, .28);
  border-radius: 12px;
  background: #fff;
  color: #24170e;
  font: inherit;
  font-size: 17px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
}

.contact-form input {
  min-height: 54px;
  padding: 0 16px;
}

.contact-form textarea {
  min-height: 160px;
  padding: 14px 16px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #e66a00;
  box-shadow: 0 0 0 4px rgba(230, 106, 0, .12);
  outline: none;
}

.contact-privacy {
  margin: 4px 0 0;
  color: #6a5648;
  font-size: 14px;
  line-height: 1.55;
}

.contact-submit {
  justify-self: start;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 12px;
  background: linear-gradient(180deg, #ff9820 0%, #e66a00 100%);
  box-shadow: 0 14px 28px rgba(230, 106, 0, .25);
}

.form-success,
.form-error {
  margin: 0 0 18px;
  padding: 14px 16px;
  border-radius: 12px;
  font-weight: 800;
  line-height: 1.45;
}

.form-success {
  border: 1px solid #bfe7c8;
  background: #eaf8ee;
  color: #17632d;
}

.form-error {
  border: 1px solid #f4b8b8;
  background: #fde8e8;
  color: #9b1c1c;
}

@media (max-width: 760px) {
  .contact-page {
    padding: 28px 12px 46px;
  }

  .contact-card {
    padding: 24px 18px;
  }

  .contact-submit {
    width: 100%;
    justify-self: stretch;
  }
}


.register-page .site-header {
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid rgba(17, 17, 17, .08);
  box-shadow: 0 8px 22px rgba(17, 17, 17, .06);
}

.register-page .reg-page {
  padding-bottom: 56px;
}

.register-page .reg-card {
  width: 100%;
  background: #ffffff;
  border-radius: 28px;
  box-shadow: 0 40px 90px rgba(60, 30, 10, .14), 0 2px 8px rgba(60, 30, 10, .04);
  overflow: hidden;
}

.register-page .reg-sec {
  padding: 28px 56px;
}

.register-page .reg-sec + .reg-sec {
  border-top: 1px solid #f3e8db;
}

/* Bölüm: marka + tanıtım */
.register-page .reg-sec-intro {
  text-align: center;
  background: linear-gradient(180deg, #fff1de 0%, #fffaf5 100%);
  padding-bottom: 24px;
}

.register-page .brand-row {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.register-page .brand-row img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 10px;
}

.register-page .brand-row strong {
  font-size: 22px;
  color: #1a1410;
  font-weight: 800;
}

.register-page .brand-row .accent,
.register-page .accent {
  color: #ff7a00;
}

.register-page .reg-sec-intro h1 {
  font-size: 34px;
  font-weight: 800;
  color: #1a1410;
  letter-spacing: -.01em;
  margin: 0 0 10px;
}

.register-page .reg-intro-text {
  color: #7a6a5c;
  font-size: 15px;
  max-width: 460px;
  margin: 0 auto 22px;
  line-height: 1.55;
}

.register-page .pill-row {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.register-page .pill {
  background: #ffffff;
  border: 1px solid #ffc785;
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 700;
  color: #8a4b00;
  box-shadow: 0 4px 12px rgba(255, 122, 0, .10);
}

.register-page .pill strong {
  color: #ff7a00;
  font-weight: 800;
}

/* Bölüm: form */
.register-page .reg-proof {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff3e6;
  border-radius: 999px;
  padding: 6px 13px;
  font-size: 12px;
  font-weight: 700;
  color: #a85700;
  margin-bottom: 16px;
}

.register-page .reg-proof::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff7a00;
  flex-shrink: 0;
}

.register-page .reg-sec-form h2 {
  font-size: 24px;
  font-weight: 800;
  color: #1a1410;
  margin: 0 0 4px;
}

.register-page .reg-sec-form .subtitle {
  color: #7a6a5c;
  font-size: 14px;
  margin: 0 0 22px;
}

.register-page .google-oauth-link {
  width: 100% !important;
  min-height: 48px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid #dadce0 !important;
  border-radius: 8px;
  background: #ffffff !important;
  color: #3c4043 !important;
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 18px;
  box-shadow: none !important;
  transition: box-shadow .15s ease, background .15s ease;
}

.register-page .google-oauth-link:hover {
  background: #f7f8f8 !important;
  box-shadow: 0 1px 3px rgba(60, 64, 67, .18) !important;
}

.register-page .google-oauth-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.register-page .reg-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #a89484;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin: 0 0 18px;
}

.register-page .reg-divider::before,
.register-page .reg-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #e4d9cd;
}

.register-page .form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 16px;
}

.register-page .field {
  margin: 0;
}

.register-page .field label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #1a1410;
  margin-bottom: 5px;
}

.register-page input:not([type="hidden"]) {
  width: 100%;
  min-height: 46px;
  padding: 0 13px;
  border: 1px solid #e4d9cd;
  border-radius: 10px;
  background: #fafafa;
  color: #1a1410;
  font-size: 14px;
  box-shadow: none;
}

.register-page input:not([type="hidden"]):focus {
  border-color: #ff7a00;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(255, 122, 0, .12);
  outline: none;
}

/* Bölüm: kategoriler */
.register-page .reg-sec-cats {
  background: #fbf7f1;
}

.register-page .section-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 800;
  color: #1a1410;
  margin: 0 0 14px;
}

.register-page .section-label img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.register-page .category-check-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.register-page .category-check {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  border: 1px solid #e9ddcd;
  border-radius: 12px;
  padding: 14px 8px;
  background: #ffffff;
  font-size: 12px;
  line-height: 1.25;
  font-weight: 700;
  color: #1a1410;
  transition: border-color .15s ease, background .15s ease;
}

.register-page .category-check:hover {
  border-color: #ffb066;
}

.register-page .category-check input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.register-page .cat-mark {
  width: 40px;
  min-width: 40px;
  height: 40px;
  border-radius: 10px;
  overflow: hidden;
}

.register-page .cat-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.register-page .category-check:has(input:checked) {
  border-color: #ff7a00;
  background: #fff7ed;
  box-shadow: 0 0 0 2px rgba(255, 122, 0, .12);
}

/* Bölüm: gönder */
.register-page .reg-sec-submit {
  text-align: center;
}

.register-page .legal-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  text-align: left;
  background: #fcfaf7;
  border: 1px solid #f0e4d4;
  border-radius: 12px;
  padding: 14px;
  margin: 0 0 18px;
  font-size: 12px;
  color: #7a6a5c;
  line-height: 1.5;
}

.register-page .legal-consent input {
  margin-top: 2px;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  accent-color: #ff7a00;
}

.register-page .legal-consent a {
  color: #ff7a00;
  font-weight: 700;
}

.register-page .submit-btn {
  width: 100%;
  min-height: 52px;
  border-radius: 14px;
  background: linear-gradient(180deg, #ff9d2e, #ff7a00);
  color: #ffffff;
  font-weight: 800;
  font-size: 16px;
  border: 0;
  box-shadow: 0 16px 32px rgba(255, 122, 0, .30);
}

.register-page .submit-btn:hover {
  filter: brightness(1.04);
}

.register-page .reg-links {
  margin: 16px 0 0;
  font-size: 13px;
  color: #7a6a5c;
}

.register-page .reg-links a {
  color: #ff7a00;
  font-weight: 800;
}

@media (max-width: 700px) {
  .register-page .reg-sec {
    padding: 28px 22px;
  }

  .register-page .form-grid {
    grid-template-columns: 1fr;
  }

  .register-page .category-check-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .register-page .reg-sec-intro h1 {
    font-size: 27px;
  }

  .register-page .pill-row {
    flex-direction: column;
    align-items: center;
  }
}



/* HandwerkFox visual theme: concrete texture, white cards, orange brand accents. */
body:not(.register-page) {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .78), rgba(255, 246, 235, .72)),
    radial-gradient(circle at 14% 8%, rgba(230, 106, 0, .12), transparent 28%),
    radial-gradient(circle at 86% 16%, rgba(17, 17, 17, .07), transparent 26%),
    url("/assets/img/beton-hintergrund.jpg") center / cover fixed;
}

.legal-page {
  width: 100%;
  min-height: calc(100vh - 120px);
  padding: 54px 20px 72px;
}

.legal-card {
  width: min(1080px, 100%);
  margin: 0 auto;
  padding: clamp(28px, 4vw, 56px);
  border: 1px solid rgba(230, 106, 0, .18);
  border-radius: 18px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 24px 70px rgba(17, 17, 17, .12);
}

.legal-card h1 {
  margin: 0 0 18px;
  color: #111111;
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1.04;
}

.legal-card h2 {
  margin: 34px 0 10px;
  color: #111111;
  font-size: clamp(22px, 2vw, 30px);
}

.legal-card p,
.legal-card li {
  color: #2b2119;
  font-size: 18px;
  line-height: 1.72;
}

.legal-kicker,
.hf-legal-translation-note {
  display: inline-block;
  border: 1px solid rgba(230, 106, 0, .28);
  border-radius: 999px;
  background: #fff7ed;
  color: #b64f00;
  font-weight: 900;
}

.legal-kicker {
  padding: 7px 14px;
}

.hf-legal-translation-note {
  margin: 0 0 16px;
  padding: 10px 14px;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 28px;
  padding: 12px 18px;
  border-radius: 8px;
  background: linear-gradient(180deg, #f07800 0%, #e66a00 100%);
  color: #ffffff;
  font-weight: 900;
}

.legal-translated[dir="rtl"] {
  text-align: right;
}

.legal-translated[dir="rtl"] .legal-back {
  direction: rtl;
}

.page-wrap,
.auth-page,
.login-page {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .70), rgba(255, 246, 235, .70)),
    url("/assets/img/beton-hintergrund.jpg") center / cover fixed;
}

.site-nav .hf-language-button,
.site-nav .hf-language-list button {
  color: #111111;
  border-color: var(--hf-line);
  background: #ffffff;
  box-shadow: 0 10px 20px rgba(120, 70, 20, .06);
}

.site-nav .hf-language-button:hover,
.site-nav .hf-language-menu.is-open .hf-language-button,
.site-nav .hf-language-list button:hover,
.site-nav .hf-language-list button.is-active {
  color: #a94d00;
  border-color: rgba(230, 106, 0, .35);
  background: #fff2df;
}

.site-nav .hf-language-list button {
  border: 0;
  box-shadow: none;
}

@media (max-width: 760px) {
  .hf-footer {
    gap: 8px;
    padding: 22px 14px;
    font-size: 13px;
  }

  .hf-footer-socials {
    gap: 10px;
    margin-top: 8px;
  }

  .hf-footer-social-link {
    width: 36px;
    height: 36px;
    border-radius: 8px;
  }

  .hf-footer-social-link svg {
    width: 27px;
    height: 27px;
  }

  .hf-footer-social-link.hf-instagram-link svg,
  .hf-footer-social-link.hf-tiktok-link svg {
    width: 28px;
    height: 28px;
  }
}

/* Footer alignment and compact social icons */
.hf-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
  padding: 28px 16px 34px;
  text-align: center;
}

.hf-footer > a,
.hf-footer > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hf-footer-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  margin: 0 auto;
}

.hf-footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
}

.hf-footer-social-link svg {
  display: block;
  width: 32px;
  height: 32px;
}

.required-dot {
  color: #ff8500;
  font-weight: 900;
}

.field-note {
  display: block;
  margin-top: 7px;
  color: #6d5140;
  font-size: 12px;
  line-height: 1.45;
}

.legal-consent {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 13px 14px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid rgba(255, 133, 0, .24);
  box-shadow: 0 10px 24px rgba(120, 70, 20, .08);
  color: #24170e;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 700;
}

.legal-consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-height: 18px;
  margin-top: 2px;
  flex: 0 0 18px;
  accent-color: #ff8500;
}

.legal-consent a {
  color: #c85f00;
  font-weight: 900;
  text-decoration: none;
}

.legal-consent a:hover {
  text-decoration: underline;
}

@media (max-width: 760px) {
  .hf-footer {
    gap: 10px;
    padding: 22px 12px 28px;
  }

  .hf-footer-socials {
    gap: 10px;
    margin-top: 0;
  }

  .hf-footer-social-link {
    width: 36px;
    height: 36px;
    min-width: 36px;
    min-height: 36px;
  }

  .hf-footer-social-link svg {
    width: 27px;
    height: 27px;
  }
}


/* Footer legal links alignment */
.hf-footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  width: 100%;
  text-align: center;
}

.hf-footer-links a {
  color: var(--hf-orange-dark);
  font-weight: 900;
}

.hf-footer-links span {
  color: rgba(36, 23, 14, .55);
  font-weight: 800;
}

@media (max-width: 760px) {
  .hf-footer-links {
    gap: 7px;
    font-size: 13px;
    line-height: 1.45;
  }
}

/* =========================================================
   HandwerkFox Theme Refresh v6
   Light peach/orange design for homepage and inner pages
   ========================================================= */
:root{
  --hf-orange:#ff7a00;
  --hf-orange-dark:#d65f00;
  --hf-orange-soft:#fff3e7;
  --hf-bg:#fffaf5;
  --hf-bg-2:#fff5ea;
  --hf-card:#ffffff;
  --hf-ink:#17120e;
  --hf-text:#302620;
  --hf-muted:#6f5b4b;
  --hf-line:rgba(255,122,0,.20);
  --hf-line-strong:rgba(255,122,0,.34);
  --hf-shadow:0 18px 45px rgba(106,60,20,.08);
  --hf-shadow-strong:0 20px 52px rgba(255,122,0,.16);
  --hf-radius:18px;
}

html{scroll-behavior:smooth;}
body{
  color:var(--hf-text);
  background:
    radial-gradient(circle at 0% 12%, rgba(255,122,0,.08), transparent 24%),
    radial-gradient(circle at 96% 78%, rgba(255,122,0,.10), transparent 22%),
    linear-gradient(180deg,#fff 0%,var(--hf-bg) 42%,var(--hf-bg-2) 100%) fixed;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  padding:18px clamp(18px,3vw,44px);
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(255,122,0,.16);
  box-shadow:0 10px 30px rgba(80,44,15,.05);
}
.site-logo{font-size:clamp(25px,2.5vw,38px);letter-spacing:-.04em;}
.site-logo img{width:58px;height:58px;border-radius:14px;box-shadow:0 10px 20px rgba(0,0,0,.06);}
.site-nav{gap:10px;}
.site-nav a,.site-language-select,.hf-language-button{
  min-height:52px;
  border-radius:12px;
  border-color:rgba(255,122,0,.18);
  background:rgba(255,255,255,.88);
  box-shadow:0 8px 18px rgba(70,40,12,.04);
  transition:transform .16s ease, box-shadow .16s ease, background .16s ease, border-color .16s ease;
}
.site-nav a:hover,.site-nav a.active,.hf-language-button:hover,.hf-language-menu.is-open .hf-language-button{
  transform:translateY(-1px);
  background:#fff3e7;
  border-color:rgba(255,122,0,.35);
  box-shadow:0 14px 28px rgba(255,122,0,.10);
}
.site-nav .nav-btn,.btn-primary,.submit-btn,input[type="submit"],button.btn-primary,.profile-btn{
  border-radius:12px;
  background:linear-gradient(180deg,#ff931f 0%,#ff7900 48%,#dd6400 100%);
  box-shadow:0 16px 30px rgba(255,122,0,.22);
}
.site-nav .nav-btn:hover,.btn-primary:hover,.submit-btn:hover,.profile-btn:hover{filter:brightness(1.03);}
.hf-language-list{border-radius:16px;border-color:rgba(255,122,0,.18);box-shadow:0 24px 60px rgba(30,20,10,.14);}
.hf-language-list button{border-radius:12px;}

.home-main,.page-wrap,.container,.list,.profile-container,.auth-page,.reg-page,.login-page{
  max-width:1280px;
  padding:clamp(34px,5vw,70px) clamp(16px,3vw,30px) 42px;
}

.home-hero{
  grid-template-columns:minmax(0,1.05fr) minmax(380px,.95fr);
  gap:28px;
  align-items:stretch;
}
.home-hero-copy,.hero-visual,.quick-search,.trust-grid article,.steps-grid article,.category-grid a,.split-section,.final-cta,.card,.box,.login-card,.register-box,.form-box,.info-box,.empty,.filter-box,.search,.order-card,.auftrag-card,.application-card,.profile-card,.stat-card,.choice-card,.auth-card,.auth-hero,.reg-panel,.signin-card,.brand-card{
  border-radius:var(--hf-radius)!important;
  background:rgba(255,255,255,.88)!important;
  border:1px solid var(--hf-line)!important;
  box-shadow:var(--hf-shadow)!important;
}
.home-hero-copy{
  min-height:520px;
  padding:clamp(34px,5vw,58px);
  background:rgba(255,255,255,.88)!important;
}
.home-hero-copy::after,.final-cta::after,.split-section::after{
  background:linear-gradient(135deg,rgba(255,122,0,.12),rgba(255,180,90,.04));
}
.eyebrow,.section-kicker,.badge,.auth-badge{
  padding:9px 14px;
  border-radius:999px;
  background:#ffffff;
  color:#c85f00;
  border:1px solid rgba(255,177,74,.50);
  box-shadow:0 6px 14px rgba(255,133,0,.12);
}
.home-hero h1{
  color:#17120e;
  font-size:clamp(46px,5.2vw,74px);
  line-height:1.03;
  letter-spacing:-.055em;
}
.home-hero h1::first-line{color:#17120e;}
.home-hero h1{max-width:700px;}
.home-hero h1, .page-title{font-weight:950;}
.page-title,h1{letter-spacing:-.035em;}
.page-title{font-size:clamp(34px,4vw,48px);color:#e66800;}
.hero-lead{font-size:clamp(17px,1.5vw,21px);color:#5f5148;}
.hero-actions{gap:14px;}
.btn{min-height:54px;padding:14px 22px;border-radius:12px;gap:9px;}
.btn-secondary,.btn:not(.btn-primary):not(.orange):not(.reject):not(.whatsapp){
  background:rgba(255,255,255,.92)!important;
  color:#d65f00;
  border:1px solid rgba(255,122,0,.34)!important;
  box-shadow:0 12px 24px rgba(255,122,0,.08);
}
.btn-secondary:hover{background:#fff4e8!important;}

.hero-visual{
  padding:28px;
  gap:18px;
  color:var(--hf-text)!important;
  background:rgba(255,255,255,.90)!important;
}
.visual-card,.team-photo-card{
  border:1px solid rgba(255,122,0,.18)!important;
  border-radius:16px!important;
  background:rgba(255,255,255,.86)!important;
  box-shadow:none!important;
}
.visual-card-main{min-height:260px;padding:26px;}
.visual-top strong{color:#17120e;font-size:28px;letter-spacing:-.03em;}
.visual-top span,.visual-list p{color:#65574e!important;}
.visual-route span{
  min-height:76px;
  color:#17120e;
  border:1px solid rgba(255,122,0,.18);
  background:#fffaf5;
  border-radius:14px;
  box-shadow:0 8px 18px rgba(70,40,12,.04);
}
.visual-route b{background:linear-gradient(90deg,transparent,#ff7a00,transparent);}
.visual-list{gap:16px;border-top:1px solid rgba(255,122,0,.12);padding-top:18px;}
.visual-list p{font-size:16px;}
.visual-icon{width:42px;height:42px;background:linear-gradient(180deg,#ff9d25,#ff7900);}
.team-photo-card{overflow:hidden;}
.team-photo-card img{height:160px;min-height:160px;object-fit:cover;}
.quick-search{padding:24px;}
.quick-search h2{color:#17120e;font-size:28px;letter-spacing:-.035em;}

.trust-grid{gap:18px;margin-top:30px;}
.trust-grid article{min-height:132px;padding:24px;display:grid;align-content:center;}
.trust-grid h3{color:#111;font-size:20px;}
.trust-grid h3::before,.steps-grid article h3::before{display:none;}
.trust-grid article::before{
  content:"";
  width:48px;height:48px;margin-bottom:12px;border-radius:50%;
  background:linear-gradient(180deg,#ff9a22 0%,#ff8500 100%);
  border:1px solid rgba(230,111,0,.45);
  box-shadow:0 8px 18px rgba(255,133,0,.26);
}
.trust-grid article:nth-child(1)::before{content:"€";display:grid;place-items:center;color:#ffffff;font-weight:900;font-size:22px;}
.trust-grid article:nth-child(2)::before{content:"✓";display:grid;place-items:center;color:#ffffff;font-weight:900;font-size:22px;}
.trust-grid article:nth-child(3)::before{content:"⏱";display:grid;place-items:center;color:#ffffff;font-weight:900;font-size:20px;}
.trust-grid article:nth-child(4)::before{content:"🌐";display:grid;place-items:center;font-size:20px;}

.section{margin-top:52px;}
.section-heading h2,.split-section h2,.final-cta h2{color:#17120e;letter-spacing:-.04em;}
.steps-grid article,.category-grid a{transition:transform .16s ease, box-shadow .16s ease, border-color .16s ease;}
.steps-grid article:hover,.category-grid a:hover,.card:hover,.order-card:hover,.profile-card:hover{transform:translateY(-2px);box-shadow:0 22px 50px rgba(106,60,20,.10)!important;}
.category-grid a{min-height:128px;}
.cat-icon{width:76px;height:76px;border-radius:0;background:none;border:0;box-shadow:none;}
.cat-icon img{width:100%;height:100%;object-fit:contain;}

.search{padding:22px!important;}
.search .form-grid,.form-grid{align-items:end;}
input,textarea,select{
  min-height:56px;
  border-radius:12px;
  border-color:rgba(255,122,0,.28);
  background:rgba(255,255,255,.96);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.7);
}
select option{color:#17120e;background:#fff;}

.worker-grid,.workers-grid,.cards,.card-grid,.orders-grid,.dashboard-grid,.profile-grid{gap:20px;}
.worker-card,.profile-card,.card,.order-card,.auftrag-card{
  border-radius:18px!important;
  background:rgba(255,255,255,.92)!important;
  border:1px solid rgba(255,122,0,.18)!important;
  box-shadow:0 16px 40px rgba(106,60,20,.07)!important;
}
.worker-card img,.profile-logo,.company-logo{
  border-radius:14px;
  border:1px solid rgba(255,122,0,.18);
  background:#fff;
}
.category-pill,.tag,.pill,.profile-card .category,.worker-category{
  display:inline-flex;
  align-items:center;
  width:max-content;
  max-width:100%;
  padding:7px 12px;
  border-radius:999px;
  background:linear-gradient(180deg,#ff9820,#ff7900);
  color:#fff!important;
  font-weight:900;
  font-size:13px;
}

.login-page,.register-page body,body.register-page{
  background:
    radial-gradient(circle at 2% 22%, rgba(255,122,0,.08), transparent 24%),
    radial-gradient(circle at 95% 86%, rgba(255,122,0,.11), transparent 20%),
    linear-gradient(180deg,#fff 0%,#fff8f1 100%) fixed!important;
}
.login-wrap,.reg-shell,.auth-wrap{gap:28px;}
.brand-card,.signin-card,.reg-panel,.auth-card{border-radius:24px!important;}
.brand-card h1,.signin-card h2{letter-spacing:-.05em;}
.brand-card h1{color:#17120e!important;}
.brand-card h1 span,.signin-card h2,.brand-logo b{color:#ff7900!important;}
.login-team-photo{border-radius:18px!important;border-color:rgba(255,122,0,.18)!important;}
.trust-item{border-radius:16px!important;background:#fffaf5!important;border-color:rgba(255,122,0,.18)!important;}

.hf-footer{
  background:rgba(255,255,255,.92)!important;
  border-top:1px solid rgba(255,122,0,.16)!important;
  box-shadow:0 -10px 30px rgba(80,44,15,.04);
}
.hf-footer-links a{color:#b94f00!important;}

@media(max-width:1050px){
  .home-hero{grid-template-columns:1fr;}
  .hero-visual{order:2;}
  .trust-grid{grid-template-columns:repeat(2,1fr);}
}
@media(max-width:760px){
  .site-header{position:relative;align-items:flex-start;flex-direction:column;padding:14px 16px;}
  .site-nav{width:100%;justify-content:flex-start;}
  .site-nav a,.hf-language-menu{flex:1 1 auto;}
  .home-main,.page-wrap,.container,.list,.profile-container,.auth-page,.reg-page,.login-page{padding:28px 14px;}
  .home-hero-copy{min-height:auto;padding:30px 24px;}
  .home-hero h1{font-size:clamp(38px,13vw,54px);}
  .hero-visual{padding:18px;}
  .visual-route{grid-template-columns:1fr;}
  .visual-route b{height:22px;width:2px;margin:0 auto;}
  .trust-grid,.steps-grid,.category-grid{grid-template-columns:1fr;}
  .search .form-grid,.form-grid{grid-template-columns:1fr!important;}
}

/* HandwerkFox v7 visual refresh */
body {
  background:
    radial-gradient(circle at 8% 8%, rgba(255, 133, 0, .12), transparent 27%),
    radial-gradient(circle at 92% 18%, rgba(255, 190, 115, .20), transparent 25%),
    linear-gradient(180deg, #fffaf5 0%, #fff4e9 56%, #ffe5c2 100%) fixed !important;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  padding: 18px 42px;
  border-bottom: 1px solid rgba(255, 133, 0, .16);
  backdrop-filter: blur(14px);
}
.site-logo img { border-radius: 16px; box-shadow: 0 8px 22px rgba(0,0,0,.10); }
.site-nav a, .hf-language-button {
  border-radius: 13px !important;
  min-height: 54px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 8px 18px rgba(120,70,20,.055);
}
.site-nav .cta-link, .site-nav .nav-btn.cta-link {
  background: linear-gradient(180deg,#ff9418 0%,#ef7100 100%) !important;
  color: #fff !important;
  border-color: rgba(230,111,0,.35) !important;
  box-shadow: 0 14px 28px rgba(239,113,0,.18) !important;
}
.hf-language-menu { min-width: 210px; position: relative; }
.hf-language-button { width: 100%; justify-content: flex-start; }
.hf-language-native { display: none !important; }
.hf-flag-uk { background: linear-gradient(#0057b7 0 50%, #ffd700 50%); }
.hf-flag-ru { background: linear-gradient(#fff 0 33.33%, #0039a6 33.33% 66.66%, #d52b1e 66.66%); }
.home-hero {
  max-width: 1440px;
  grid-template-columns: minmax(360px, .95fr) minmax(430px, .80fr) !important;
  align-items: stretch;
  gap: 34px !important;
}
.home-hero-copy, .hero-visual, .card, .search, .page-card, .auth-card, .form-card {
  background: rgba(255,255,255,.92) !important;
  border: 1px solid rgba(255,133,0,.20) !important;
  box-shadow: 0 22px 54px rgba(120,70,20,.09) !important;
  border-radius: 22px !important;
}
.home-hero-copy {
  position: relative;
  overflow: hidden;
  min-height: 560px;
}
.home-hero-copy::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -100px;
  width: 310px;
  height: 310px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,133,0,.13), transparent 66%);
}
.home-hero-copy h1 {
  font-size: clamp(48px, 5vw, 76px) !important;
  line-height: .98 !important;
  letter-spacing: -2px;
  color: #14100d;
}
.home-hero-copy h1::first-line { color: #14100d; }
.hero-lead { max-width: 620px; font-size: 20px !important; line-height: 1.55; color: #6b5543; }
.hero-visual {
  padding: 28px !important;
  color: var(--hf-ink) !important;
  background: rgba(255,255,255,.92) !important;
}
.visual-card-main {
  background: #fff !important;
  border: 1px solid rgba(255,133,0,.18) !important;
  color: #24170e !important;
  box-shadow: none !important;
}
.visual-route span {
  background: #fff7ed !important;
  color: #24170e !important;
  border: 1px solid rgba(255,133,0,.20) !important;
}
.visual-list p { color: #24170e !important; }
.team-photo-card img, .hf-page-photo img, .worker-card-photo img, .profile-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.team-photo-card { height: 170px; border-radius: 16px; overflow: hidden; border: 1px solid rgba(255,133,0,.18); }
.trust-grid article, .category-grid a, .steps-grid article {
  background: rgba(255,255,255,.92) !important;
  border: 1px solid rgba(255,133,0,.16) !important;
  border-radius: 18px !important;
  box-shadow: 0 14px 30px rgba(120,70,20,.07) !important;
}
.trust-grid article::before { color: #ffffff; }
.page-wrap { max-width: 1240px !important; }
.grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 22px; }
.worker-card-modern {
  display: grid;
  grid-template-columns: 210px 1fr;
  min-height: 245px;
  padding: 0 !important;
  overflow: hidden;
}
.worker-card-photo {
  min-height: 245px;
  background: #fff2df;
}
.worker-card-body { padding: 24px; }
.worker-rating { color: #ffb000; font-weight: 900; margin: 8px 0 10px; }
.worker-meta { display: grid; gap: 6px; color: #6b5543; margin: 12px 0; }
.hf-page-layout { display: grid; grid-template-columns: minmax(0,1fr) 360px; gap: 24px; align-items: start; }
.hf-page-photo { border-radius: 22px; overflow: hidden; min-height: 320px; border: 1px solid rgba(255,133,0,.18); box-shadow: 0 22px 54px rgba(120,70,20,.09); }
.hf-tips { background:#fff; border:1px solid rgba(255,133,0,.18); border-radius:20px; padding:24px; box-shadow:0 18px 42px rgba(120,70,20,.08); }
.hf-tips h2 { margin-top:0; color:#ef7100; }
.hf-tips li { margin: 12px 0; line-height: 1.45; }
.profile-cover { height: 260px; border-radius: 22px; overflow: hidden; border: 1px solid rgba(255,133,0,.18); margin-bottom: -70px; }
.profile-main-card { padding-top: 92px !important; }
.profile-gallery { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.profile-gallery img { height: 130px; border-radius: 14px; object-fit: cover; border: 1px solid rgba(255,133,0,.18); }
.hf-admin-layout table { background:#fff; border-radius:18px; overflow:hidden; box-shadow:0 18px 42px rgba(120,70,20,.08); }
.hf-admin-layout .danger-btn { background:#e53935 !important; color:#fff !important; }
@media (max-width: 980px) {
  .site-header { position: relative; padding: 16px; }
  .home-hero, .hf-page-layout { grid-template-columns: 1fr !important; }
  .grid { grid-template-columns: 1fr; }
  .worker-card-modern { grid-template-columns: 1fr; }
  .worker-card-photo { height: 210px; min-height: 210px; }
  .profile-gallery { grid-template-columns: repeat(2,1fr); }
}
.hero-worker-photo { margin: 28px 0 0; height: 190px; border-radius: 18px; overflow: hidden; border:1px solid rgba(255,133,0,.18); box-shadow:0 16px 36px rgba(120,70,20,.08); position:relative; z-index:1; }
.hero-worker-photo img { width:100%; height:100%; object-fit:cover; display:block; }
@media(max-width:760px){ .hero-worker-photo{height:170px;} }


/* HandwerkFox visual photo refresh v8 */
.hero-worker-photo{height:260px;margin:26px 0 0;border-radius:24px;overflow:hidden;border:1px solid rgba(255,133,0,.18);box-shadow:0 24px 55px rgba(120,70,20,.12)}
.hero-worker-photo img,.team-photo-card img,.worker-card-photo img,.profile-cover img,.profile-gallery img,.order-photo-panel img{width:100%;height:100%;object-fit:cover;display:block}
.team-photo-card{height:170px;border-radius:20px;overflow:hidden;border:1px solid rgba(255,133,0,.18);box-shadow:0 18px 40px rgba(120,70,20,.10)}
.worker-card-modern{display:grid;grid-template-columns:190px 1fr;gap:20px;align-items:stretch;overflow:hidden;padding:18px!important}
.worker-card-photo{height:100%;min-height:245px;border-radius:18px;overflow:hidden;margin:0;background:#fff2e4;border:1px solid rgba(255,133,0,.20)}
.worker-card-body{min-width:0}.worker-rating{color:#ff9a00;font-weight:900;margin:7px 0}.worker-meta{display:grid;gap:7px;color:#4b392c}.desc{color:#6a5140;line-height:1.45}.card-logo{background:#fff;border-radius:14px;border:1px solid rgba(255,133,0,.22);padding:4px;object-fit:contain}
.profile-cover{height:280px;border-radius:24px;overflow:hidden;border:1px solid rgba(255,133,0,.18);margin-bottom:-68px;box-shadow:0 24px 60px rgba(120,70,20,.12)}
.profile-gallery{display:grid;grid-template-columns:repeat(4,1fr);gap:14px}.profile-gallery img{height:145px;border-radius:16px;border:1px solid rgba(255,133,0,.18);box-shadow:0 12px 30px rgba(120,70,20,.08)}
.order-visual-layout{display:grid;grid-template-columns:minmax(0,1.35fr) minmax(320px,.65fr);gap:24px;align-items:start}.order-form-panel,.order-photo-panel{background:#fff;border:1px solid rgba(255,133,0,.20);border-radius:24px;padding:24px;box-shadow:0 20px 55px rgba(120,70,20,.08)}.order-photo-panel{position:sticky;top:105px}.order-photo-panel h2{margin:0 0 14px;color:#24170e}.order-photo-panel ul{margin:0 0 18px;padding-left:20px;line-height:1.7;color:#5f4632}.order-photo-panel li::marker{color:#ff7a00}.order-photo-panel img{height:360px;border-radius:18px;border:1px solid rgba(255,133,0,.18);box-shadow:0 18px 44px rgba(120,70,20,.10)}
.hf-flag{display:inline-block;width:24px;height:17px;border-radius:3px;box-shadow:0 0 0 1px rgba(0,0,0,.12);background-size:cover;background-position:center;flex:0 0 auto}.hf-flag-de{background-image:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 5 3"><path d="M0 0h5v3H0z"/><path fill="%23dd0000" d="M0 1h5v2H0z"/><path fill="%23ffce00" d="M0 2h5v1H0z"/></svg>')}.hf-flag-gb{background-image:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 30"><clipPath id="a"><path d="M0 0v30h60V0z"/></clipPath><clipPath id="b"><path d="M30 15h30v15zv15H0zH0V0zV0h60z"/></clipPath><g clip-path="url(%23a)"><path d="M0 0v30h60V0z" fill="%23012169"/><path d="M0 0l60 30m0-30L0 30" stroke="%23fff" stroke-width="6"/><path d="M0 0l60 30m0-30L0 30" clip-path="url(%23b)" stroke="%23C8102E" stroke-width="4"/><path d="M30 0v30M0 15h60" stroke="%23fff" stroke-width="10"/><path d="M30 0v30M0 15h60" stroke="%23C8102E" stroke-width="6"/></g></svg>')}.hf-flag-tr{background-image:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><path fill="%23e30a17" d="M0 0h1200v800H0z"/><circle cx="425" cy="400" r="200" fill="%23fff"/><circle cx="475" cy="400" r="160" fill="%23e30a17"/><path fill="%23fff" d="m690 400 180-59-111 153V306l111 153z"/></svg>')}.hf-flag-sa{background-image:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 900 600"><path fill="%23006c35" d="M0 0h900v600H0z"/><path fill="%23fff" d="M220 420h460v35H220z"/></svg>')}.hf-flag-uk{background-image:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><path fill="%23005bbb" d="M0 0h1200v400H0z"/><path fill="%23ffd500" d="M0 400h1200v400H0z"/></svg>')}.hf-flag-ru{background-image:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 9 6"><path fill="%23fff" d="M0 0h9v6H0z"/><path fill="%230039a6" d="M0 2h9v4H0z"/><path fill="%23d52b1e" d="M0 4h9v2H0z"/></svg>')}
@media(max-width:900px){.worker-card-modern{grid-template-columns:1fr}.worker-card-photo{height:220px;min-height:0}.order-visual-layout{grid-template-columns:1fr}.order-photo-panel{position:static}.profile-gallery{grid-template-columns:repeat(2,1fr)}.hero-worker-photo{height:210px}.team-photo-card{height:150px}}


/* HandwerkFox v9 layout stabilization
   Ziel: Mockup görünümünü gerçek sayfada dengeli, geniş ve temiz göstermek. */
:root{
  --hf-v9-max: 1480px;
  --hf-v9-page: min(calc(100vw - 48px), var(--hf-v9-max));
}

html{scroll-behavior:smooth;}
body{overflow-x:hidden;}

.site-header{
  width:100%;
  display:flex!important;
  align-items:center!important;
  justify-content:space-between!important;
  gap:24px!important;
  padding:18px clamp(18px,3vw,54px)!important;
}
.site-logo{flex:0 0 auto;white-space:nowrap;}
.site-logo img{width:58px!important;height:58px!important;object-fit:contain;}
.site-nav{flex:1 1 auto;display:flex!important;justify-content:flex-end!important;align-items:center!important;gap:10px!important;}
.site-nav a,.hf-language-button{min-height:52px!important;padding:13px 17px!important;}
.hf-language-menu{min-width:220px!important;max-width:260px!important;}

.home-main,.page-wrap,.container,.list,.profile-container,.auth-page,.reg-page,.login-page{
  width:var(--hf-v9-page)!important;
  max-width:var(--hf-v9-max)!important;
  margin-left:auto!important;
  margin-right:auto!important;
  padding:clamp(42px,5vw,78px) 0 48px!important;
}

.home-hero{
  width:100%!important;
  max-width:none!important;
  margin:0!important;
  display:grid!important;
  grid-template-columns:minmax(0,1.02fr) minmax(430px,.88fr)!important;
  gap:34px!important;
  align-items:stretch!important;
}
.home-hero-copy,.hero-visual{
  min-width:0!important;
  border-radius:28px!important;
}
.home-hero-copy{
  min-height:620px!important;
  padding:clamp(36px,4vw,66px)!important;
  display:flex!important;
  flex-direction:column!important;
  justify-content:center!important;
}
.home-hero-copy h1{
  max-width:720px!important;
  font-size:clamp(52px,5.4vw,82px)!important;
  line-height:.98!important;
  margin:18px 0 18px!important;
}
.hero-lead{max-width:690px!important;}
.hero-worker-photo{
  height:310px!important;
  margin-top:26px!important;
  order:3;
}
.hero-actions{margin-top:24px!important;order:4;}
.hero-visual{
  display:flex!important;
  flex-direction:column!important;
  min-height:620px!important;
  padding:30px!important;
}
.visual-card-main{flex:0 0 auto!important;}
.team-photo-card{height:210px!important;flex:0 0 auto!important;}
.quick-search{flex:1 1 auto!important;}

.trust-grid,.steps-grid,.category-grid{
  width:100%!important;
}
.trust-grid{grid-template-columns:repeat(4,minmax(0,1fr))!important;}
.steps-grid{grid-template-columns:repeat(3,minmax(0,1fr))!important;}
.category-grid{grid-template-columns:repeat(4,minmax(0,1fr))!important;}
.section,.split-section,.final-cta{width:100%!important;}

.page-title{margin:0 0 28px!important;}
.search{width:100%!important;margin-bottom:24px!important;}
.search .form-grid{
  display:grid!important;
  grid-template-columns:minmax(240px,1.1fr) minmax(190px,.75fr) minmax(210px,.85fr) auto!important;
  gap:16px!important;
  align-items:end!important;
}
.grid{
  width:100%!important;
  display:grid!important;
  grid-template-columns:repeat(2,minmax(0,1fr))!important;
  gap:24px!important;
}
.worker-card-modern{
  position:relative!important;
  display:grid!important;
  grid-template-columns:220px minmax(0,1fr)!important;
  gap:0!important;
  min-height:280px!important;
  padding:0!important;
  overflow:hidden!important;
  border-radius:24px!important;
}
.worker-card-photo{
  width:100%!important;
  height:100%!important;
  min-height:280px!important;
  margin:0!important;
  border:0!important;
  border-radius:0!important;
  background:#fff2e4!important;
}
.worker-card-photo img{width:100%!important;height:100%!important;object-fit:cover!important;display:block!important;}
.worker-card-body{
  position:relative!important;
  z-index:2!important;
  min-width:0!important;
  padding:26px!important;
  background:rgba(255,255,255,.96)!important;
}
.card-logo{width:70px!important;height:70px!important;object-fit:contain!important;}
.worker-card-body h2{margin:10px 0 4px!important;font-size:25px!important;line-height:1.1!important;}
.worker-rating{font-size:16px!important;}
.worker-meta{font-size:15px!important;}
.worker-card-body .actions{margin-top:18px!important;}

.auth-wrap,.reg-shell,.login-wrap{
  width:var(--hf-v9-page)!important;
  max-width:1180px!important;
  margin-left:auto!important;
  margin-right:auto!important;
  display:grid!important;
  grid-template-columns:minmax(0,1fr) minmax(420px,.95fr)!important;
  gap:28px!important;
  align-items:stretch!important;
}
.login-team-photo,.reg-hero img[src*="handwerker-team"],.brand-card img[src*="handwerker-team"]{
  width:100%!important;
  height:260px!important;
  object-fit:cover!important;
  display:block!important;
  border-radius:20px!important;
}

.order-visual-layout{width:100%!important;}
.profile-cover{width:100%!important;}
.profile-gallery{width:100%!important;}

@media(max-width:1180px){
  .home-hero{grid-template-columns:1fr!important;}
  .home-hero-copy,.hero-visual{min-height:auto!important;}
  .trust-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important;}
  .category-grid{grid-template-columns:repeat(3,minmax(0,1fr))!important;}
}
@media(max-width:980px){
  :root{--hf-v9-page:min(calc(100vw - 28px), var(--hf-v9-max));}
  .site-header{position:relative!important;flex-direction:column!important;align-items:flex-start!important;}
  .site-nav{width:100%!important;justify-content:flex-start!important;}
  .grid{grid-template-columns:1fr!important;}
  .worker-card-modern{grid-template-columns:210px minmax(0,1fr)!important;}
  .search .form-grid{grid-template-columns:1fr 1fr!important;}
  .auth-wrap,.reg-shell,.login-wrap{grid-template-columns:1fr!important;}
}
@media(max-width:720px){
  .site-logo{font-size:26px!important;}
  .site-nav a,.hf-language-menu{flex:1 1 140px!important;}
  .home-main,.page-wrap,.container,.list,.profile-container,.auth-page,.reg-page,.login-page{padding-top:28px!important;}
  .home-hero-copy h1{font-size:clamp(42px,12vw,58px)!important;}
  .hero-worker-photo{height:220px!important;}
  .team-photo-card{height:170px!important;}
  .trust-grid,.steps-grid,.category-grid{grid-template-columns:1fr!important;}
  .worker-card-modern{grid-template-columns:1fr!important;}
  .worker-card-photo{height:230px!important;min-height:230px!important;}
  .search .form-grid{grid-template-columns:1fr!important;}
}

/* v71 real photo + header/language stability */
.hero-worker-photo img,
.team-photo-card img,
.worker-card-photo img,
.profile-cover img,
.profile-gallery img,
.order-photo-panel img,
.auth-photo img,
.hf-page-photo img{
  width:100% !important;
  height:100% !important;
  object-fit:cover !important;
  display:block !important;
}
.hero-worker-photo,
.team-photo-card,
.auth-photo,
.hf-page-photo{
  overflow:hidden !important;
  border-radius:22px !important;
  background:#fff2e5 !important;
}
.worker-card-modern{overflow:hidden!important;}
.worker-card-photo{background:#fff2e5!important;}
.site-header{position:sticky;top:0;z-index:1000;}
.site-nav{overflow:visible!important;}
.hf-language-menu{display:block!important;position:relative!important;z-index:1100!important;}
.hf-language-list{z-index:1200!important;}
.hf-language-native{display:none!important;}
@media(max-width:900px){
  .worker-card-modern{grid-template-columns:1fr!important;}
  .worker-card-photo{height:230px!important;min-height:230px!important;}
}
