:root {
  --brand-navy: #0a1d3a;
  --brand-navy-deep: #061229;
  --brand-gold: #c9a96e;
  --brand-gold-dark: #b99050;
  --brand-gold-light: #e4cb93;
  --brand-cream: #f8f5ef;
  --success: #22c55e;
  --whatsapp: #25d366;
  --text-muted: #64748b;
  --border: #cbd5e1;
  --shadow-navy: rgba(10, 29, 58, 0.2);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  overflow-x: hidden;
  background: #ffffff;
  color: var(--brand-navy);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-width: 320px;
}

body.modal-open {
  overflow: hidden;
}

body::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

body::-webkit-scrollbar-track {
  background: #f1f1f1;
}

body::-webkit-scrollbar-thumb {
  background: var(--brand-navy);
  border-radius: 6px;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.icon-sprite {
  display: none;
}

.icon {
  display: inline-block;
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.icon-fill {
  fill: currentColor;
  stroke: none;
}

.icon-green {
  color: var(--success);
}

.scroll-smooth {
  scroll-behavior: smooth;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  padding: 0.75rem 0.75rem 0;
  animation: header-in 0.5s ease both 0.1s;
}

.header-shell {
  display: flex;
  width: fit-content;
  max-width: calc(100vw - 1.5rem);
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 20px 45px rgba(10, 29, 58, 0.1);
  backdrop-filter: blur(18px);
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-scrolled .header-shell {
  border-color: rgba(226, 232, 240, 0.8);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 25px 60px rgba(10, 29, 58, 0.12);
}

.logo-link {
  display: flex;
  flex-shrink: 0;
  align-items: center;
}

.logo {
  width: auto;
  height: 3.5rem;
  display: block;
}

.header-phone {
  display: none;
  align-items: center;
  gap: 0.375rem;
  border-radius: 999px;
  padding: 0.5rem 0.75rem;
  color: rgba(10, 29, 58, 0.85);
  font-size: 0.875rem;
  font-weight: 500;
  transition: background 0.2s ease;
}

.header-phone:hover {
  background: rgba(10, 29, 58, 0.05);
}

.page {
  min-height: 100vh;
  background: #ffffff;
}

.hero {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: 100svh;
  width: 100%;
  align-items: center;
  overflow: hidden;
  background: var(--brand-navy);
}

.hero-video,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  object-fit: cover;
  transform: translateZ(0);
}

.hero-overlay {
  background:
    linear-gradient(135deg, rgba(6, 18, 41, 0.85) 0%, rgba(10, 29, 58, 0.65) 50%, rgba(6, 18, 41, 0.7) 100%),
    radial-gradient(ellipse at top right, rgba(201, 169, 110, 0.15) 0%, transparent 60%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-width: 0;
  width: 100%;
  max-width: 80rem;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  align-items: start;
  margin: 0 auto;
  padding: 6rem 1rem 2rem;
}

.hero-copy {
  order: 2;
  min-width: 0;
  margin-top: 1rem;
  animation: fade-up 0.6s ease both;
}

.form-area {
  order: 1;
  min-width: 0;
  animation: fade-up 0.5s ease both 0.2s;
}

.status-pill {
  display: inline-flex;
  max-width: 100%;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem 0.75rem;
  border: 1px solid rgba(201, 169, 110, 0.35);
  border-radius: 999px;
  background: rgba(10, 29, 58, 0.35);
  padding: 0.375rem 0.75rem;
  color: var(--brand-gold-light);
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.status-dot {
  width: 0.5rem;
  height: 0.5rem;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--brand-gold);
}

.hero-title {
  max-width: 48rem;
  margin: 1rem 0 0;
  color: #ffffff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.04;
}

.hero-title > span {
  display: block;
}

.hero-title .hero-subtitle {
  margin-top: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  line-height: 1.15;
}

.gold-text {
  background: linear-gradient(120deg, var(--brand-gold) 0%, var(--brand-gold-light) 50%, var(--brand-gold) 100%);
  background-clip: text;
  color: transparent;
  -webkit-background-clip: text;
}

.hero-title .gold-text {
  font-size: 1.625rem;
  line-height: 1.24;
  overflow: visible;
  padding-bottom: 0.08em;
}

.no-wrap {
  display: inline;
  white-space: normal;
}

.hero-text {
  max-width: 36rem;
  margin: 0.75rem 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.8125rem;
  line-height: 1.65;
}

.hero-text strong {
  color: #ffffff;
}

.trust-list {
  display: grid;
  max-width: 36rem;
  grid-template-columns: 1fr;
  gap: 0.375rem;
  margin: 0.75rem 0 0;
  padding: 0;
  list-style: none;
}

.trust-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.375rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.75rem;
  line-height: 1.35;
}

.trust-list .icon {
  width: 0.9375rem;
  height: 0.9375rem;
  color: var(--brand-gold);
}

.lead-form,
.success-card {
  border: 1px solid #ffffff;
  border-radius: 1rem;
  background: #ffffff;
  box-shadow: 0 25px 50px -12px var(--shadow-navy);
}

.lead-form {
  width: 100%;
  max-width: 100%;
  padding: 1.25rem 1.125rem 1.35rem;
}

.form-intro {
  margin-bottom: 1rem;
}

.form-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  border-radius: 999px;
  background: rgba(201, 169, 110, 0.2);
  padding: 0.25rem 0.75rem;
  color: #735622;
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.form-badge .icon {
  width: 0.75rem;
  height: 0.75rem;
}

.form-intro h2,
.success-card h2 {
  margin: 0.75rem 0 0;
  color: var(--brand-navy);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.625rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.15;
}

.form-intro p {
  margin: 0.25rem 0 0;
  color: #334155;
  font-size: 0.875rem;
  font-weight: 500;
}

.field-stack {
  display: grid;
  gap: 0.75rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  background: #ffffff;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
  color: var(--brand-navy);
  font-size: 0.9375rem;
  font-weight: 600;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.field input,
.field select {
  min-height: 3.35rem;
  padding: 0.875rem 1rem;
}

.compact-fields {
  display: flex !important;
  gap: 0.5rem;
}

.compact-fields > .field {
  flex: 1 1 0 !important;
  min-width: 0 !important;
}

.age-field input,
.grade-field select {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.grade-field select {
  padding-right: 1.6rem;
}

.field textarea {
  min-height: 4.875rem;
  resize: none;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #64748b;
  font-weight: 500;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--brand-gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.25);
}

.field.has-error input,
.field.has-error select,
.field.has-error textarea {
  border-color: #dc2626;
}

.field-error {
  margin: 0.25rem 0 0;
  color: #dc2626;
  font-size: 0.6875rem;
  line-height: 1.3;
}

.message-toggle {
  width: fit-content;
  border: 0;
  background: transparent;
  padding: 0;
  color: #334155;
  font-size: 0.75rem;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 2px;
  transition: color 0.15s ease, text-decoration-color 0.15s ease;
}

.message-toggle:hover {
  color: var(--brand-navy);
  text-decoration-color: currentColor;
}

.kvkk-field {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding-top: 0.125rem;
  color: #334155;
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.35;
  user-select: none;
}

.kvkk-field input {
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
  margin: 0.125rem 0 0;
  accent-color: var(--brand-gold);
}

.kvkk-field strong {
  color: var(--brand-navy);
}

.kvkk-field span {
  min-width: 0;
}

.submit-button {
  position: relative;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3.6rem;
  border: 0;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, var(--brand-gold) 0%, var(--brand-gold-dark) 100%);
  box-shadow: 0 10px 30px -8px rgba(201, 169, 110, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  color: var(--brand-navy);
  font-size: 0.9375rem;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px -8px rgba(201, 169, 110, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.submit-button:active {
  transform: translateY(0);
}

.submit-button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.button-ready,
.button-loading {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.arrow-icon {
  transition: transform 0.2s ease;
}

.submit-button:hover .arrow-icon {
  transform: translateX(2px);
}

.spinner {
  width: 1rem;
  height: 1rem;
  border: 2px solid rgba(10, 29, 58, 0.3);
  border-top-color: var(--brand-navy);
  border-radius: 999px;
  animation: spin 0.75s linear infinite;
}

.form-assurance {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding-top: 0.35rem;
  color: #334155;
  font-size: 0.6875rem;
  font-weight: 600;
}

.form-assurance span {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  text-align: center;
}

.form-assurance .icon {
  width: 0.75rem;
  height: 0.75rem;
}

.mobile-contact {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
  padding-top: 0.65rem;
}

.mobile-contact a {
  display: inline-flex;
  min-width: 0;
  min-height: 2.9rem;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  padding-right: 0.75rem;
  padding-left: 0.75rem;
  border: 1px solid rgba(10, 29, 58, 0.15);
  border-radius: 0.75rem;
  background: #ffffff;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
  color: var(--brand-navy);
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
}

.mobile-contact .whatsapp-link {
  border-color: var(--whatsapp);
  background: var(--whatsapp);
  color: #ffffff;
}

.success-card {
  padding: 1.5rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.94);
  box-shadow:
    0 30px 80px -20px rgba(6, 18, 41, 0.5),
    0 8px 24px -12px rgba(6, 18, 41, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(24px) saturate(180%);
  animation: success-in 0.28s ease both;
}

.success-icon {
  display: flex;
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1rem;
  align-items: center;
  justify-content: center;
}

.success-icon svg {
  width: 4rem;
  height: 4rem;
}

.success-circle,
.success-check {
  fill: none;
  stroke: var(--success);
}

.success-circle {
  stroke-width: 4;
  stroke-dasharray: 300;
  animation: draw-circle 0.6s ease-out forwards;
}

.success-check {
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
  animation: draw-check 0.4s ease-out forwards 0.5s;
}

.success-card p {
  margin: 0.5rem 0 0;
  color: #475569;
  font-size: 0.8125rem;
  line-height: 1.6;
}

.success-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.success-actions a {
  display: inline-flex;
  min-height: 2.75rem;
  flex: 1;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.625rem 1rem;
  font-size: 0.8125rem;
  font-weight: 700;
  transition: background 0.15s ease, filter 0.15s ease;
}

.success-whatsapp {
  background: var(--whatsapp);
  color: #ffffff;
}

.success-whatsapp:hover {
  filter: brightness(1.08);
}

.success-phone {
  border: 1px solid rgba(10, 29, 58, 0.15);
  background: #ffffff;
  color: var(--brand-navy);
}

.success-phone:hover {
  background: #f8fafc;
}

.success-modal {
  position: fixed;
  z-index: 90;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(6, 18, 41, 0.52);
  backdrop-filter: blur(10px);
  animation: modal-fade 0.18s ease both;
}

.success-dialog {
  width: min(100%, 24rem);
  padding: 1.5rem;
}

.success-close-button {
  display: inline-flex;
  min-height: 2.75rem;
  width: 100%;
  align-items: center;
  justify-content: center;
  margin-top: 1.25rem;
  border: 0;
  border-radius: 0.75rem;
  background: var(--brand-navy);
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 800;
  transition: background 0.15s ease, transform 0.15s ease;
}

.success-close-button:hover {
  background: var(--brand-navy-deep);
  transform: translateY(-1px);
}

.bottom-fade {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 5rem;
  background: linear-gradient(to bottom, transparent, rgba(10, 29, 58, 0.3));
  pointer-events: none;
}

.sticky-contact {
  position: fixed;
  z-index: 40;
  right: 1.25rem;
  bottom: 1.25rem;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.sticky-contact a {
  position: relative;
  display: flex;
  width: 3rem;
  height: 3rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #ffffff;
  box-shadow: 0 25px 50px -12px rgba(10, 29, 58, 0.3);
  transition: transform 0.18s ease;
  animation: sticky-in 0.45s cubic-bezier(0.2, 1.1, 0.2, 1) both;
}

.sticky-contact a:hover {
  transform: scale(1.1);
}

.sticky-phone {
  background: var(--brand-navy);
  animation-delay: 1.35s;
}

.sticky-whatsapp {
  background: var(--whatsapp);
  box-shadow: 0 25px 50px -12px rgba(37, 211, 102, 0.4);
  animation-delay: 1.5s;
}

.sticky-contact .icon {
  width: 1.5rem;
  height: 1.5rem;
}

.sticky-phone .icon {
  width: 1.25rem;
  height: 1.25rem;
}

.pulse {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: var(--whatsapp);
  opacity: 0.2;
  animation: pulse 1.6s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.sticky-whatsapp .icon {
  position: relative;
}

.toast-region {
  position: fixed;
  z-index: 80;
  top: 1rem;
  left: 50%;
  display: grid;
  width: min(calc(100vw - 2rem), 28rem);
  gap: 0.5rem;
  transform: translateX(-50%);
  pointer-events: none;
}

.toast {
  border: 1px solid #dbe4ef;
  border-radius: 0.75rem;
  background: #ffffff;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.16);
  color: var(--brand-navy);
  padding: 0.875rem 1rem;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.35;
  pointer-events: auto;
  animation: toast-in 0.22s ease both;
}

.toast.success {
  border-color: rgba(34, 197, 94, 0.25);
  background: #f0fdf4;
  color: #166534;
}

.toast.error {
  border-color: rgba(220, 38, 38, 0.25);
  background: #fef2f2;
  color: #991b1b;
}

[hidden] {
  display: none !important;
}

@keyframes header-in {
  from {
    opacity: 0;
    transform: translateY(-2.5rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(1.5rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes success-in {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes modal-fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes sticky-in {
  from {
    opacity: 0;
    transform: scale(0);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes draw-circle {
  from {
    stroke-dashoffset: 300;
  }
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes draw-check {
  from {
    stroke-dashoffset: 60;
  }
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  75%,
  100% {
    opacity: 0;
    transform: scale(1.4);
  }
}

@keyframes toast-in {
  from {
    opacity: 0;
    transform: translateY(-0.5rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 640px) {
  .site-header {
    padding: 1rem 1.5rem 0;
  }

  .header-shell {
    width: 100%;
    max-width: 72rem;
    justify-content: space-between;
    padding: 0.5rem 1.25rem;
  }

  .logo {
    height: 4rem;
  }

  .header-phone {
    display: inline-flex;
  }

  .hero-grid {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }

  .status-pill {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
  }

  .hero-title {
    margin-top: 1.25rem;
    font-size: 2.875rem;
  }

  .hero-title .hero-subtitle {
    margin-top: 0.75rem;
    font-size: 1.875rem;
  }

  .hero-title .gold-text {
    font-size: 2.5rem;
  }

  .no-wrap {
    white-space: nowrap;
  }

  .hero-text {
    margin-top: 1rem;
    font-size: 1rem;
  }

  .trust-list {
    gap: 0.625rem;
    margin-top: 1.5rem;
  }

  .trust-list li {
    font-size: 0.875rem;
  }

  .trust-list .icon {
    width: 1.125rem;
    height: 1.125rem;
  }

  .lead-form {
    padding: 1.25rem;
  }

  .form-intro {
    margin-bottom: 1rem;
  }

  .form-intro h2,
  .success-card h2 {
    font-size: 1.75rem;
  }

  .submit-button {
    min-height: 3.5rem;
    font-size: 1rem;
  }

  .mobile-contact {
    display: none;
  }

  .success-card {
    padding: 2rem;
  }

  .success-actions {
    flex-direction: row;
  }

  .sticky-contact {
    display: flex;
  }

  .sticky-contact a {
    width: 4rem;
    height: 4rem;
  }

  .sticky-contact .icon {
    width: 2rem;
    height: 2rem;
  }

  .sticky-phone .icon {
    width: 1.75rem;
    height: 1.75rem;
  }
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    align-items: center;
    gap: 2.5rem;
    padding: 6rem 2rem 2rem;
  }

  .hero-copy {
    order: 1;
    grid-column: span 7;
    margin-top: 0;
  }

  .form-area {
    order: 2;
    grid-column: span 5;
  }

  .hero-title {
    font-size: 3.25rem;
  }

  .hero-title .hero-subtitle {
    font-size: 2.25rem;
  }

  .hero-title .gold-text {
    font-size: 2.875rem;
  }

  .lead-form {
    padding: 1.5rem;
  }
}

@media (max-width: 768px) {
  html,
  body,
  .page {
    max-width: 100%;
    overflow-x: hidden;
  }

  .site-header {
    position: relative;
    padding: 0.75rem 1rem 0.5rem;
    background: var(--brand-navy);
  }

  .header-shell {
    width: fit-content;
    max-width: calc(100vw - 2rem);
    justify-content: center;
    padding: 0.5rem 1rem;
  }

  .logo {
    height: 3.75rem;
  }

  .header-phone {
    display: none;
  }

  .hero {
    min-height: auto;
    align-items: stretch;
    overflow-x: hidden;
  }

  .hero-grid {
    display: flex;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    flex-direction: column;
    gap: 0.9rem;
    overflow-x: hidden;
    padding: 1rem 1rem 2rem;
  }

  .hero-copy {
    display: contents;
  }

  .status-pill {
    display: none;
  }

  .hero-title {
    order: 2;
    width: 100%;
    max-width: 100%;
    align-self: stretch;
    margin: 0;
    overflow-wrap: break-word;
    font-size: 1.85rem;
    line-height: 1.08;
  }

  .hero-title > span {
    max-width: 100%;
    overflow-wrap: break-word;
    white-space: normal;
  }

  .hero-title .hero-subtitle {
    margin-top: 0.4rem;
    font-size: 1.35rem;
    line-height: 1.18;
  }

  .hero-title .gold-text {
    font-size: 1.7rem;
    line-height: 1.22;
  }

  .no-wrap {
    white-space: normal !important;
  }

  .hero-title .no-wrap {
    display: block;
  }

  .hero-text {
    display: block;
    order: 3;
    width: 100%;
    max-width: 100%;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.55;
  }

  .form-area {
    position: relative;
    order: 1;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    align-self: stretch;
  }

  .lead-form {
    position: relative;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .compact-fields {
    flex-direction: column;
  }

  .field input,
  .field select,
  .field textarea,
  .submit-button,
  .mobile-contact a {
    width: 100%;
    max-width: 100%;
    min-height: 3rem;
    box-sizing: border-box;
  }

  .kvkk-field span {
    display: block;
    overflow-wrap: break-word;
  }

  .form-assurance {
    display: none;
  }

  .mobile-contact {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    gap: 0.45rem;
  }

  .mobile-contact a {
    gap: 0.25rem;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    font-size: 0.68rem;
  }

  .mobile-contact .icon {
    width: 0.9rem;
    height: 0.9rem;
  }

  .trust-list {
    order: 4;
    width: 100%;
    max-width: 100%;
    align-self: stretch;
    margin: 0;
    gap: 0.55rem;
  }

  .trust-list li {
    font-size: 0.82rem;
  }
}

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