:root {
    --teal: #0F7B6C; --teal-d: #085041; --teal-m: #1D9E75;
    --mint: #E1F5EE; --mint-m: #9FE1CB;
    --pearl: #F8F6F2; --night: #1C2B3A; --night-l: #243545;
    --amber: #E8A020; --stone: #888780; --stone-l: #E5E2DA;
    --f-disp: 'Montserrat', system-ui, sans-serif;
    --f-sans: 'Montserrat', system-ui, sans-serif;
  }
  *, *::before, *::after { box-sizing: border-box; }
  body { font-family: var(--f-sans); background: #fff; color: #000; }
  a    { text-decoration: none; color: inherit; }
  img  { display: block; max-width: 100%; }

  /* ── HERO ─────────────────────────────────────────────────────────────── */
  .ul-hero {
    background: var(--night);
    min-height: 520px;
    display: grid; grid-template-columns: 1fr 1fr;
    position: relative; overflow: hidden;
  }
  /* 1201px+: iki sütunlu grid, tam ekran hero */
  @media(min-width:1201px) {
    .ul-hero { height: calc(100vh - 132px); min-height: 600px; }
  }
  .ul-hero::before {
    content: ''; position: absolute; inset: 0;
    background-image: linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
    background-size: 80px 80px; z-index: 0;
  }
  .ul-hero-left {
    position: relative; z-index: 2;
    padding: 48px 60px 40px;
    display: flex; flex-direction: column; justify-content: space-between;
    border-right: 1px solid rgba(255,255,255,.06);
  }
  .ul-eyebrow { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
  .ul-ey-line { width: 48px; height: 1px; background: var(--teal); }
  .ul-ey-tx   { font-size: 10px; font-weight: 600; letter-spacing: 5px; text-transform: uppercase; color: #fff; }
  .ul-h1      { font-family: var(--f-disp); font-size: clamp(40px,4.5vw,72px); font-weight: 800; color: #fff; line-height: .92; letter-spacing: -2px; margin-bottom: 18px; }
  .ul-h1 em   { font-style: italic; font-weight: 300; color: #fff; display: block; }
  .ul-hero-desc { font-size: clamp(13px,1.3vw,16px); font-weight: 400; font-style: italic; color: #fff; line-height: 1.65; max-width: 420px; margin-bottom: 20px; }
  .ul-lang-pills { display: flex; flex-wrap: wrap; gap: 8px; }
  .ul-lp { display: inline-flex; align-items: center; gap: 8px; border: 1px solid rgba(255,255,255,.35); color: #fff; font-size: 12px; padding: 6px 13px; transition: all .25s; cursor: default; }
  .ul-lp:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,.06); }
  .ul-hero-stats { display: flex; gap: 0; border-top: 1px solid rgba(255,255,255,.07); padding-top: 20px; margin-top: auto; }
  .ul-hs { flex: 1; padding-right: 28px; border-right: 1px solid rgba(255,255,255,.07); }
  .ul-hs:last-child { border-right: none; padding-right: 0; padding-left: 28px; }
  .ul-hs:not(:first-child) { padding-left: 28px; }
  .ul-hs-n    { font-size: clamp(26px,3.5vw,42px); font-weight: 700; color: #fff; line-height: 1; letter-spacing: -1.5px; }
  .ul-hs-n em { color: #fff; font-style: normal; font-size: .55em; }
  .ul-hs-l    { font-size: 9px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: #fff; margin-top: 6px; }
  .ul-hero-right {
    position: relative; z-index: 2;
    padding: 48px 60px 40px;
    display: flex; flex-direction: column; justify-content: space-between;
    background: rgba(0,0,0,.15);
  }
  .ul-hr-label { font-size: 9px; font-weight: 600; letter-spacing: 5px; text-transform: uppercase; color: #fff; margin-bottom: 20px; }
  .ul-contact-lines { display: flex; flex-direction: column; gap: 0; margin-bottom: 32px; }
  .ul-cl { display: flex; align-items: center; justify-content: space-between; padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.07); }
  .ul-cl:first-child { border-top: 1px solid rgba(255,255,255,.07); }
  .ul-cl-label { font-size: 9.5px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: #fff; }
  .ul-cl-val   { font-size: 17px; font-weight: 400; color: #fff; letter-spacing: -.3px; text-align: right; }
  .ul-cl-val a { color: #fff; transition: color .2s; }
  .ul-cl-val a:hover { color: #fff; }
  .ul-hero-btns { display: flex; flex-direction: column; gap: 12px; }
  .ul-hb-p  { display: flex; align-items: center; justify-content: space-between; background: var(--teal); color: #fff; padding: 16px 22px; font-size: 13px; font-weight: 700; letter-spacing: .5px; cursor: pointer; border: none; font-family: var(--f-sans); transition: background .2s; }
  .ul-hb-p:hover { background: var(--teal-m); }
  .ul-hb-p svg { width: 16px; height: 16px; stroke: #fff; fill: none; stroke-width: 1.8; stroke-linecap: round; }
  .ul-hb-wa { display: flex; align-items: center; justify-content: space-between; border: 1px solid rgba(255,255,255,.28); color: #fff; padding: 14px 22px; font-size: 13px; cursor: pointer; transition: all .2s; background: transparent; font-family: var(--f-sans); }
  .ul-hb-wa:hover { border-color: rgba(37,211,102,.45); color: #fff; background: rgba(37,211,102,.08); }
  .ul-hb-wa svg { width: 16px; height: 16px; fill: rgba(255,255,255,.85); }

  /* ── NEDEN TÜRKİYE ────────────────────────────────────────────────────── */
  .ul-why { background: var(--pearl); padding: 100px 0; border-top: 1px solid var(--stone-l); }
  .ul-why-in { max-width: 1320px; margin: 0 auto; padding: 0 80px; display: grid; grid-template-columns: 1fr 1fr; gap: 120px; align-items: flex-start; }
  .ul-why-label { font-size: 9px; font-weight: 600; letter-spacing: 5px; text-transform: uppercase; color: #000; margin-bottom: 20px; }
  .ul-why-h     { font-size: clamp(32px,4vw,52px); font-weight: 700; color: #000; line-height: 1.1; letter-spacing: -1.5px; }
  .ul-why-h em  { font-style: italic; font-weight: 300; color: #000; }
  .ul-why-div   { width: 48px; height: 1px; background: var(--teal); margin: 36px 0; }
  .ul-why-quote { border-left: 2px solid #000; padding-left: 22px; font-size: 18px; font-weight: 400; font-style: italic; color: #000; line-height: 1.6; }
  .ul-why-body  { font-size: 19px; font-weight: 400; color: #000; line-height: 1.8; margin-bottom: 22px; letter-spacing: .1px; }
  .ul-why-sm    { font-size: 15px; font-weight: 400; color: #000; line-height: 1.85; margin-bottom: 52px; }
  .ul-why-stats { display: flex; flex-direction: column; gap: 0; }
  .ul-ws { display: flex; align-items: center; justify-content: space-between; padding: 20px 0; border-bottom: 1px solid var(--stone-l); }
  .ul-ws:first-child { border-top: 1px solid var(--stone-l); }
  .ul-ws-label { font-size: 14px; font-weight: 400; color: #000; }
  .ul-ws-val    { font-size: clamp(26px,3vw,38px); font-weight: 700; color: #000; letter-spacing: -1px; line-height: 1; }
  .ul-ws-val em { font-style: normal; color: #000; font-size: .55em; font-weight: 400; }

  /* ── SÜREÇ ────────────────────────────────────────────────────────────── */
  .ul-process { background: #fff; padding: 100px 0; border-top: 1px solid var(--stone-l); }
  .ul-process-in { max-width: 1320px; margin: 0 auto; padding: 0 80px; }
  .ul-process-head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 72px; gap: 32px; border-bottom: 1px solid var(--stone-l); padding-bottom: 24px; }
  .ul-ph-title { font-size: clamp(28px,3.5vw,44px); font-weight: 700; color: #000; letter-spacing: -1px; }
  .ul-ph-title em { font-style: italic; font-weight: 300; color: #000; }
  .ul-ph-desc  { font-size: 14.5px; font-weight: 400; color: #000; line-height: 1.7; max-width: 320px; text-align: right; }
  .ul-steps { display: flex; flex-direction: column; gap: 0; }
  .ul-step { display: grid; grid-template-columns: 80px 1fr 1fr; gap: 0; align-items: flex-start; padding: 40px 0; border-bottom: 1px solid var(--stone-l); cursor: default; position: relative; }
  .ul-step:last-child { border-bottom: none; }
  .ul-step::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 2px; background: var(--teal); transform: scaleY(0); transform-origin: top; transition: transform .4s cubic-bezier(.4,0,.2,1); }
  .ul-step:hover::before { transform: scaleY(1); }
  .ul-step-n    { font-size: clamp(40px,5vw,64px); font-weight: 800; color: rgba(0,0,0,.08); line-height: 1; letter-spacing: -2px; transition: color .3s; padding-top: 4px; }
  .ul-step:hover .ul-step-n { color: rgba(0,0,0,.12); }
  .ul-step-name { font-size: clamp(20px,2.2vw,26px); font-weight: 700; color: #000; letter-spacing: -.5px; margin-bottom: 8px; }
  .ul-step-name em { font-style: italic; font-weight: 400; color: #000; }
  .ul-step-tag  { font-size: 9.5px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: #000; }
  .ul-step-right { font-size: 14.5px; font-weight: 400; color: #000; line-height: 1.75; padding-top: 6px; padding-right: 40px; }

  /* ── LOTUS ────────────────────────────────────────────────────────────── */
  .ul-lotus { background: var(--night); padding: 100px 0; position: relative; overflow: hidden; }
  .ul-lotus::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.015) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.015) 1px, transparent 1px); background-size: 80px 80px; }
  .ul-lotus::after  { content: ''; position: absolute; bottom: -200px; right: -200px; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(15,123,108,.08), transparent 70%); z-index: 0; }
  .ul-lotus-in { max-width: 1320px; margin: 0 auto; padding: 0 80px; position: relative; z-index: 2; color: #fff; }
  .ul-lotus-head { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: flex-end; margin-bottom: 72px; border-bottom: 1px solid rgba(255,255,255,.07); padding-bottom: 48px; }
  .ul-lotus-label { font-size: 9px; font-weight: 600; letter-spacing: 5px; text-transform: uppercase; color: #fff; margin-bottom: 20px; }
  .ul-lotus-h     { font-size: clamp(32px,4vw,52px); font-weight: 700; color: #fff; line-height: 1.1; letter-spacing: -1.5px; }
  .ul-lotus-h em  { font-style: italic; font-weight: 300; color: #fff; }
  .ul-lotus-desc  { font-size: 15px; font-weight: 400; color: #fff; line-height: 1.85; margin-bottom: 24px; }
  .ul-lotus-ext   { display: inline-flex; align-items: center; gap: 8px; border-bottom: 1px solid #fff; color: #fff; font-size: 15px; font-style: italic; font-weight: 300; cursor: pointer; transition: all .2s; padding-bottom: 2px; }
  .ul-lotus-ext:hover { color: #fff; border-bottom-color: #fff; }
  .ul-lotus-ext svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; }
  .ul-lotus-units { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; border-top: 1px solid rgba(255,255,255,.07); }
  .ul-lu { padding: 36px 36px 36px 0; border-right: 1px solid rgba(255,255,255,.07); cursor: default; transition: all .3s; }
  .ul-lu:nth-child(3n) { border-right: none; padding-right: 0; }
  .ul-lu:nth-child(n+4) { border-top: 1px solid rgba(255,255,255,.07); }
  .ul-lu:hover .ul-lu-n { color: rgba(15,123,108,.25); }
  .ul-lu-n    { font-size: 36px; font-weight: 800; color: rgba(255,255,255,.35); line-height: 1; letter-spacing: -1px; margin-bottom: 16px; transition: color .3s; }
  .ul-lu-name { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 8px; }
  .ul-lu-desc { font-size: 13px; font-weight: 400; color: #fff; line-height: 1.65; }
  .ul-lotus-photos { display: grid; grid-template-columns: repeat(5,1fr); gap: 8px; margin-top: 48px; }
  .ul-lph { aspect-ratio: 4/5; position: relative; overflow: hidden; cursor: pointer; }
  .ul-lph:hover .ul-lph-inner { transform: scale(1.06); }
  .ul-lph-inner { width: 100%; height: 100%; transition: transform .7s cubic-bezier(.25,.46,.45,.94); }
  .ul-lph-ov    { position: absolute; inset: 0; background: rgba(28,43,58,.25); opacity: 0; transition: opacity .4s; display: flex; align-items: flex-end; padding: 14px; }
  .ul-lph:hover .ul-lph-ov { opacity: 1; }
  .ul-lph-label { font-size: 9.5px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: #fff; }
  .ul-ph-1 { background: linear-gradient(160deg,#0c2a32,#183c48); }
  .ul-ph-2 { background: linear-gradient(160deg,#0e2432,#1a3040); }
  .ul-ph-3 { background: linear-gradient(160deg,#102830,#1c3840); }
  .ul-ph-4 { background: linear-gradient(160deg,#0c2232,#183242); }
  .ul-ph-5 { background: linear-gradient(160deg,#0e2630,#1a3640); }
  .ul-ph-di { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; opacity: .07; }
  .ul-ph-di svg { width: 36px; height: 36px; stroke: var(--mint); fill: none; stroke-width: .8; }
  .ul-lph-inner { position: relative; }
  .ul-lph-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity .6s ease; }
  .ul-lph-img.loaded { opacity: 1; }

  /* ── TRANSFER ─────────────────────────────────────────────────────────── */
  .ul-transfer { background: var(--pearl); padding: 100px 0; border-top: 1px solid var(--stone-l); }
  .ul-transfer-in { max-width: 1320px; margin: 0 auto; padding: 0 80px; display: grid; grid-template-columns: 300px 1fr; gap: 96px; align-items: flex-start; }
  .ul-tr-label { font-size: 9px; font-weight: 600; letter-spacing: 5px; text-transform: uppercase; color: #000; margin-bottom: 20px; }
  .ul-tr-h     { font-size: clamp(28px,3.5vw,44px); font-weight: 700; color: #000; line-height: 1.1; letter-spacing: -1px; }
  .ul-tr-h em  { font-style: italic; font-weight: 300; color: #000; }
  .ul-tr-div   { width: 40px; height: 1px; background: var(--teal); margin: 32px 0; }
  .ul-tr-note  { font-size: 14px; font-weight: 400; color: #000; line-height: 1.75; }
  .ul-tri { display: flex; align-items: flex-start; gap: 28px; padding: 32px 0; border-bottom: 1px solid var(--stone-l); cursor: default; transition: all .25s; position: relative; }
  .ul-tri:first-child { border-top: 1px solid var(--stone-l); }
  .ul-tri::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 2px; background: var(--teal); transform: scaleY(0); transform-origin: top; transition: transform .4s cubic-bezier(.4,0,.2,1); }
  .ul-tri:hover::before { transform: scaleY(1); }
  .ul-tri:hover .ul-tri-n { color: rgba(15,123,108,.2); }
  .ul-tri-n    { font-size: 40px; font-weight: 800; color: rgba(0,0,0,.08); line-height: 1; letter-spacing: -1.5px; flex-shrink: 0; width: 52px; transition: color .3s; padding-top: 4px; }
  .ul-tri-name { font-size: clamp(17px,2vw,22px); font-weight: 700; color: #000; letter-spacing: -.4px; margin-bottom: 8px; }
  .ul-tri-name em { font-style: italic; font-weight: 400; color: #000; }
  .ul-tri-desc { font-size: 14px; font-weight: 400; color: #000; line-height: 1.75; }

  /* ── FORM (viewport + clamp; iletişim formuyla aynı mantık) ─────────── */
  .ul-form-sec { background: #fff; border-top: 1px solid var(--stone-l); }
  .ul-form-split {
    --ul-form-pad: clamp(18px, 3.2vh, 64px);
    --ul-form-pad-x: clamp(26px, 3.4vw, 72px);
    --vd-chrome-h: 132px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    box-sizing: border-box;
  }
  @media (min-width: 1201px) {
    .ul-form-split {
      min-height: calc(100svh - var(--vd-chrome-h));
    }
  }
  .ul-form-left {
    padding: var(--ul-form-pad) var(--ul-form-pad-x);
    background: var(--pearl);
    color: #000;
    border-right: 1px solid var(--stone-l);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
  }
  .ul-fl-label { font-size: 9px; font-weight: 600; letter-spacing: 4px; text-transform: uppercase; color: #000; margin-bottom: clamp(12px, 2vh, 20px); }
  .ul-fl-h     { font-size: clamp(22px, 3vw, 42px); font-weight: 700; color: #000; line-height: 1.12; letter-spacing: -0.8px; margin-bottom: clamp(10px, 1.5vh, 16px); }
  .ul-fl-h em  { font-style: italic; font-weight: 300; color: #000; }
  .ul-fl-desc  { font-size: clamp(13px, 1.15vw, 15px); font-weight: 400; color: #000; line-height: 1.65; }
  .ul-fl-contacts { display: flex; flex-direction: column; gap: 0; margin-top: auto; padding-top: clamp(24px, 3.5vh, 56px); flex-shrink: 0; }
  .ul-flc { display: flex; align-items: center; justify-content: space-between; padding: clamp(12px, 1.8vh, 18px) 0; border-bottom: 1px solid var(--stone-l); cursor: pointer; transition: opacity .2s; color: inherit; }
  .ul-flc:first-child { border-top: 1px solid var(--stone-l); }
  .ul-flc:hover { opacity: .65; }
  .ul-flc-label { font-size: 9px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: #000; }
  .ul-flc-val   { font-size: clamp(15px, 1.2vw, 17px); font-weight: 400; color: #000; }
  .ul-form-right {
    padding: var(--ul-form-pad) var(--ul-form-pad-x);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    box-sizing: border-box;
    color: #000;
  }
  .ul-form-intro { font-size: clamp(17px, 1.85vw, 26px); font-weight: 700; color: #000; line-height: 1.15; letter-spacing: -.45px; margin-bottom: clamp(4px, 0.7vh, 8px); }
  .ul-form-intro em { font-style: italic; font-weight: 300; color: #000; }
  .ul-form-sub   { font-size: clamp(12.5px, 1.05vw, 14px); font-weight: 400; color: #000; line-height: 1.55; margin-bottom: clamp(14px, 2.4vh, 40px); }
  .ul-field { margin-bottom: clamp(9px, 1.55vh, 28px); position: relative; }
  .ul-field-label { display: block; font-size: 9.5px; font-weight: 600; letter-spacing: 1.8px; text-transform: uppercase; color: #000; margin-bottom: clamp(4px, 0.75vh, 10px); transition: color .2s; }
  .ul-field:focus-within .ul-field-label { color: #000; }
  .ul-fi, .ul-fsel, .ul-fta {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--stone-l);
    padding: 0 0 clamp(5px, 0.95vh, 12px);
    font-family: var(--f-sans);
    font-size: clamp(13px, 0.98vw, 15px);
    font-weight: 400;
    color: #000;
    outline: none;
    transition: border-color .25s;
    border-radius: 0;
  }
  .ul-fi:focus, .ul-fsel:focus, .ul-fta:focus { border-bottom-color: var(--teal); }
  .ul-fi::placeholder, .ul-fta::placeholder { color: #000; opacity: .45; font-style: italic; }
  .ul-fta { resize: none; min-height: clamp(36px, 5.5vh, 52px); line-height: 1.45; }
  .ul-fsel { cursor: pointer; color: #000; }
  .ul-frow { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(16px, 2.5vw, 36px); }
  .ul-phone-row  { display: flex; gap: clamp(12px, 2vw, 20px); }
  .ul-phone-code { background: transparent; border: none; border-bottom: 1px solid var(--stone-l); padding: 0 0 clamp(5px, 0.95vh, 12px); font-family: var(--f-sans); font-size: clamp(13px, 0.98vw, 15px); font-weight: 400; color: #000; outline: none; cursor: pointer; transition: border-color .25s; flex-shrink: 0; width: 112px; }
  .ul-phone-code:focus { border-bottom-color: var(--teal); }
  .ul-kvkk-row { display: flex; align-items: flex-start; gap: 10px; margin-bottom: clamp(6px, 0.9vh, 10px); }
  .ul-kvkk-cb { width: 16px; height: 16px; border: 1.5px solid var(--stone); border-radius: 3px; appearance: none; -webkit-appearance: none; cursor: pointer; flex-shrink: 0; margin-top: 2px; transition: all .2s; position: relative; background: transparent; }
  .ul-kvkk-cb:checked { background: var(--teal); border-color: var(--teal); }
  .ul-kvkk-cb:checked::after { content: ''; position: absolute; top: 2px; left: 4px; width: 5px; height: 9px; border: 1.5px solid #fff; border-top: none; border-left: none; transform: rotate(45deg); }
  .ul-kvkk-label { font-size: 11.5px; color: #000; line-height: 1.5; cursor: pointer; }
  .ul-kvkk-label strong { color: #000; font-weight: 600; }
  .ul-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--night);
    color: #fff;
    border: none;
    padding: clamp(10px, 1.45vh, 15px) clamp(22px, 2.8vw, 34px);
    cursor: pointer;
    font-family: var(--f-sans);
    font-size: clamp(12px, 0.95vw, 14px);
    font-weight: 700;
    letter-spacing: .5px;
    transition: all .3s;
    margin-top: clamp(8px, 1.2vh, 14px);
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    align-self: flex-start;
  }
  .ul-submit-btn::before { content: ''; position: absolute; inset: 0; background: var(--teal); transform: translateX(-100%); transition: transform .35s cubic-bezier(.4,0,.2,1); }
  .ul-submit-btn span, .ul-submit-btn svg { position: relative; z-index: 1; }
  .ul-submit-btn:hover::before { transform: translateX(0); }
  .ul-submit-btn svg { width: 17px; height: 17px; stroke: #fff; fill: none; stroke-width: 1.8; stroke-linecap: round; transition: transform .25s; }
  .ul-submit-btn:hover svg { transform: translateX(4px); }

  /* ── RESPONSIVE ───────────────────────────────────────────────────────── */
  @media (max-width: 1100px) {
    .ul-form-split { grid-template-columns: 1fr; min-height: 0; }
    .ul-form-left { border-right: none; border-bottom: 1px solid var(--stone-l); }
    .ul-form-left,
    .ul-form-right { padding: clamp(28px, 4.5vw, 52px) clamp(20px, 4vw, 44px); }
    .ul-phone-row { flex-direction: column; gap: 0; }
    .ul-phone-code { width: 100%; max-width: none; }
    .ul-submit-btn { max-width: 100%; box-sizing: border-box; }
  }
  @media(max-width:1200px) {
    .ul-hero { grid-template-columns: 1fr; }
    .ul-hero-left { padding: 48px 48px 40px; }
    .ul-hero-right { padding: 40px 48px 48px; }
    .ul-why-in, .ul-lotus-head, .ul-transfer-in, .ul-form-split { grid-template-columns: 1fr; }
    .ul-form-split { min-height: 0; }
    .ul-form-left { border-right: none; border-bottom: 1px solid var(--stone-l); }
    .ul-lotus-units { grid-template-columns: 1fr 1fr; }
    .ul-lu:nth-child(2n) { border-right: none; padding-right: 0; }
    .ul-lu:nth-child(2n+1) { padding-right: 32px; }
    .ul-lu:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,.07); }
    .ul-lotus-photos { grid-template-columns: repeat(3,1fr); }
    .ul-form-left, .ul-form-right { padding: clamp(36px, 5vw, 56px) clamp(24px, 4vw, 48px); }
  }
  @media(max-width:768px) {
    .ul-hero-left, .ul-hero-right { padding-left: 24px; padding-right: 24px; }
    .ul-hero-left { padding-top: 56px; padding-bottom: 56px; }
    .ul-hero-right { padding-top: 44px; padding-bottom: 48px; }
    .ul-hero-stats { gap: 0; flex-wrap: nowrap; }
    .ul-hs { padding-left: 16px !important; padding-right: 16px !important; }
    .ul-hs:first-child { padding-left: 0 !important; }
    .ul-hs:last-child { padding-right: 0 !important; }
    .ul-h1 { letter-spacing: -2px; }
    .ul-why { padding: 56px 0; }
    .ul-why-in, .ul-process-in, .ul-lotus-in, .ul-transfer-in { padding-left: 24px; padding-right: 24px; }
    .ul-why-body { font-size: 16px; }
    .ul-process { padding: 56px 0; }
    .ul-process-head { flex-direction: column; align-items: flex-start; margin-bottom: 40px; }
    .ul-ph-desc { text-align: left; max-width: none; }
    .ul-step { grid-template-columns: 56px 1fr; gap: 0 16px; padding: 28px 0; }
    .ul-step-right { grid-column: 2; padding-right: 0; }
    .ul-step-name { font-size: 18px; }
    .ul-lotus { padding: 56px 0; }
    .ul-lotus-head { margin-bottom: 40px; padding-bottom: 32px; }
    .ul-lotus-units { grid-template-columns: 1fr; }
    .ul-lu { border-right: none !important; padding-right: 0 !important; padding-left: 0 !important; }
    .ul-lu:nth-child(n+2) { border-top: 1px solid rgba(255,255,255,.07); }
    .ul-lotus-photos { grid-template-columns: 1fr 1fr; }
    .ul-transfer { padding: 56px 0; }
    .ul-form-left, .ul-form-right { padding: 36px 24px; }
    .ul-form-split { min-height: 0; }
    .ul-frow { grid-template-columns: 1fr; }
    .ul-phone-row { flex-direction: column; gap: 0; }
    .ul-phone-code { width: 100%; max-width: none; }
    .ul-submit-btn {
      width: 100%;
      max-width: 100%;
      justify-content: center;
      box-sizing: border-box;
      align-self: stretch;
    }
  }
  @media (max-width: 480px) {
    .ul-form-left,
    .ul-form-right { padding: 28px 16px; }
    .ul-flc { flex-direction: column; align-items: flex-start; gap: 6px; }
    .ul-flc-val { font-size: clamp(14px, 4vw, 17px); word-break: break-word; }
  }