:root {
  --bg: #f6f7f9;
  --ink: #0e1b2e;
  --ink-soft: #46526a;
  --muted: #7a8599;
  --line: #e3e7ee;
  --card: #ffffff;
  --accent: #2a5bd7;
  --accent-d: #1f4bb8;
  --accent-l: #dbe6fb;
  /* eski pastel değişkenler artık mavi-gri tonlara bağlı */
  --mint: #e8eef7;
  --mint-d: var(--accent);
  --sky: #e1e9f5;
  --sky-d: var(--accent);
  --sun: var(--accent-l);
  --sun-d: var(--accent);
  --peach: #eef1f6;
  --coral: var(--accent);
  --coral-d: var(--accent-d);
  --lilac: #e5eaf3;
  --lilac-d: var(--accent);
  --radius: 26px;
  --max: 1180px;
  --display: "Bricolage Grotesque", "DM Sans", system-ui, sans-serif;
  --sans: "DM Sans", system-ui, sans-serif;
  --ease: cubic-bezier(.2, .8, .2, 1);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
main { overflow-x: clip; }
body {
  font-family: var(--sans); background: var(--bg); color: var(--ink);
  font-size: 17px; line-height: 1.65; -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3 { font-family: var(--display); line-height: 1.05; letter-spacing: -0.03em; font-weight: 700; }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.ico { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; flex: none; }

/* scroll progress */
.progress { position: fixed; top: 0; left: 0; height: 3px; width: 100%; transform-origin: 0 50%; transform: scaleX(0); z-index: 100;
  background: linear-gradient(90deg, var(--ink), var(--accent), #6f9cff); }

/* ---------- Header (floating pill) ---------- */
.site-header { position: fixed; top: 14px; left: 0; right: 0; z-index: 80; pointer-events: none; }
.nav {
  pointer-events: auto; max-width: var(--max); margin: 0 auto; padding: 10px 10px 10px 16px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px; position: relative;
  background: rgba(255,255,255,.72); backdrop-filter: blur(14px) saturate(1.4); -webkit-backdrop-filter: blur(14px) saturate(1.4);
  border: 1px solid rgba(255,255,255,.9); border-radius: 999px; box-shadow: 0 8px 30px rgba(14,27,46,.06);
  width: calc(100% - 32px); transition: box-shadow .3s;
}
.site-header.scrolled .nav { box-shadow: 0 12px 40px rgba(14,27,46,.12); }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand-mark { position: relative; width: 42px; height: 42px; border-radius: 13px; flex: none; display: flex; align-items: center; justify-content: center;
  background: var(--ink); color: #fff; font-family: var(--display); font-weight: 800; font-size: 22px; letter-spacing: -0.07em; line-height: 1; padding-top: 3px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08), 0 6px 16px rgba(14,27,46,.18); overflow: hidden; }
.brand-mark::after { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.22) 50%, transparent 70%);
  transform: translateX(-120%); transition: transform .8s var(--ease); }
.brand:hover .brand-mark::after { transform: translateX(120%); }
.bm-o { position: relative; margin-left: 1px; }
.bm-o i { position: absolute; top: -5px; width: 5px; height: 5px; border-radius: 50%; transition: transform .4s var(--ease); }
.bm-o i:first-child { left: 2px; background: #6f9cff; }
.bm-o i:last-child { right: 2px; background: #ffffff; transition-delay: .06s; }
.brand:hover .bm-o i { transform: translateY(-2px); }
.brand b { font-family: var(--display); font-size: 18px; letter-spacing: -0.02em; display: block; line-height: 1.1; }
.brand small { font-size: 10.5px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); display: block; line-height: 1.2; margin-top: 3px; }
.menu { list-style: none; display: flex; gap: 2px; align-items: center; }
.menu a { text-decoration: none; font-size: 15px; font-weight: 500; padding: 9px 14px; border-radius: 999px; color: var(--ink-soft); transition: background .2s, color .2s; display: block; }
.menu a:hover, .menu a.active { background: var(--bg); color: var(--ink); }
.menu .cta { background: var(--ink); color: #fff; display: inline-flex; align-items: center; gap: 8px; padding: 10px 18px; }
.menu .cta:hover { background: var(--coral); color: #fff; }
.menu .cta .ico { width: 18px; height: 18px; }
.menu { order: 2; }
.lang { order: 3; position: relative; display: flex; padding: 4px; border-radius: 999px; background: var(--bg); border: 1px solid var(--line); flex: none; }
.lang::before { content: ""; position: absolute; top: 4px; bottom: 4px; left: 4px; width: calc(50% - 4px); border-radius: 999px; background: #fff;
  box-shadow: 0 2px 8px rgba(14,27,46,.12); transition: transform .4s var(--ease); }
.lang:has(a:last-child.on)::before { transform: translateX(100%); }
.lang a { position: relative; z-index: 1; width: 38px; text-align: center; padding: 6px 0; font-size: 13px; font-weight: 700; letter-spacing: .04em;
  text-decoration: none; color: var(--muted); border-radius: 999px; transition: color .2s; }
.lang a.on { color: var(--ink); }
.lang a:not(.on):hover { color: var(--coral-d); }
.menu-toggle { order: 4; flex: none; }
@media (max-width: 400px) { .brand small { letter-spacing: .1em; } .brand b { font-size: 17px; } }
.menu-toggle { display: none; background: var(--ink); color: #fff; border: 0; width: 44px; height: 44px; border-radius: 50%; cursor: pointer; place-items: center; }
.menu-toggle .ico { width: 22px; height: 22px; }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 15px 26px; border-radius: 999px; font-weight: 600; font-size: 16px;
  text-decoration: none; border: 0; cursor: pointer; font-family: var(--sans); transition: transform .3s var(--ease), background .2s, color .2s, box-shadow .3s, border-color .2s; }
.btn .ico { width: 20px; height: 20px; transition: transform .3s var(--ease); }
.btn:hover .ico { transform: translateX(4px); }
.btn-dark { background: var(--ink); color: #fff; box-shadow: 0 10px 24px rgba(14,27,46,.18); }
.btn-dark:hover { background: var(--coral); box-shadow: 0 14px 30px rgba(42,91,215,.3); }
.btn-soft { background: #fff; color: var(--ink); border: 1.5px solid var(--line); }
.btn-soft:hover { border-color: var(--ink); }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 150px 0 100px; overflow: hidden; }
.blob { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .6; z-index: 0; animation: float 16s ease-in-out infinite; pointer-events: none; }
.blob.b1 { width: 520px; height: 520px; background: var(--mint); top: -140px; left: -160px; }
.blob.b2 { width: 460px; height: 460px; background: var(--sky); top: 60px; right: -140px; animation-delay: -5s; }
.blob.b3 { width: 360px; height: 360px; background: var(--peach); bottom: -160px; left: 38%; animation-delay: -10s; }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
.chip { display: inline-flex; align-items: center; gap: 10px; padding: 8px 16px 8px 12px; border-radius: 999px; background: #fff; border: 1px solid var(--line);
  font-size: 14px; font-weight: 500; color: var(--ink-soft); }
.chip .pulse { width: 10px; height: 10px; border-radius: 50%; background: var(--mint-d); animation: pulse 2s infinite; }
.hero h1 { font-size: clamp(44px, 6.6vw, 88px); margin: 0; }
.rotator { display: block; position: relative; height: 1.32em; overflow: hidden; margin-top: -.08em; }
.rotator span { position: absolute; left: 0; top: 0; line-height: 1.32; white-space: nowrap; transform: translateY(110%); opacity: 0;
  transition: transform .8s var(--ease), opacity .8s var(--ease);
  background: linear-gradient(90deg, var(--accent-d), #4f86f7); -webkit-background-clip: text; background-clip: text; color: transparent; }
.rotator span.on { transform: none; opacity: 1; }
.rotator span.out { transform: translateY(-110%); opacity: 0; }
.hero .lead { font-size: 19px; color: var(--ink-soft); max-width: 520px; margin: 24px 0 34px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-meta { display: flex; gap: 22px; margin-top: 36px; flex-wrap: wrap; color: var(--ink-soft); font-size: 15px; }
.hero-meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero-meta .ico { width: 20px; height: 20px; color: var(--mint-d); }

.hero-art { position: relative; aspect-ratio: 1; max-width: 500px; justify-self: center; width: 100%; }
.hero-art .ring { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.ring .track { stroke: var(--ink); stroke-opacity: .08; }
.ring .draw { stroke-dasharray: 1400; stroke-dashoffset: 1400; animation: draw 3.2s var(--ease) .3s forwards; }
.ring .runner { offset-path: path("M250 20 A230 230 0 1 1 249.9 20"); animation: run 9s linear infinite; }
.portrait { position: absolute; inset: 13%; overflow: hidden;
  background: linear-gradient(145deg, #dfe8f6, #eef2f8 55%, #d7e2f3); display: grid; place-items: center;
  color: var(--ink-soft); font-size: 14px; text-align: center; animation: morph 14s ease-in-out infinite; }
.portrait img { width: 100%; height: 100%; object-fit: cover; }
.ph { display: grid; justify-items: center; gap: 10px; opacity: .75; }
.ph .ico { width: 44px; height: 44px; stroke-width: 1.3; }
.float-chip { position: absolute; display: flex; align-items: center; gap: 10px; padding: 10px 16px 10px 10px; background: #fff; border-radius: 18px;
  box-shadow: 0 14px 34px rgba(14,27,46,.1); font-size: 14px; font-weight: 600; animation: bob 6s ease-in-out infinite; white-space: nowrap; z-index: 2; }
.float-chip i { width: 38px; height: 38px; border-radius: 12px; display: grid; place-items: center; }
.float-chip .ico { width: 20px; height: 20px; }
.fc1 { top: 6%; left: -4%; } .fc1 i { background: var(--mint); color: var(--mint-d); }
.fc2 { top: 44%; right: -8%; animation-delay: -2s; } .fc2 i { background: var(--sun); color: var(--sun-d); }
.fc3 { bottom: 6%; left: 2%; animation-delay: -4s; } .fc3 i { background: var(--lilac); color: var(--lilac-d); }

/* ---------- Marquee ---------- */
.marquee { overflow: hidden; display: flex; user-select: none; --gap: 48px; }
.marquee-track { display: flex; flex-shrink: 0; min-width: 100%; gap: var(--gap); padding-right: var(--gap); align-items: center; animation: scroll var(--dur, 30s) linear infinite; }
.marquee.reverse .marquee-track { animation-direction: reverse; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.skills-band { background: var(--ink); color: #fff; padding: 22px 0; transform: rotate(-2deg); margin: 0 -20px; position: relative; z-index: 2; }
.skills-band .item { display: inline-flex; align-items: center; gap: 14px; font-family: var(--display); font-size: 30px; font-weight: 600; white-space: nowrap; letter-spacing: -0.02em; }
.skills-band .ico { width: 28px; height: 28px; color: var(--sun); }

/* ---------- Sections ---------- */
section { padding: 110px 0; position: relative; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--coral-d); margin-bottom: 16px; }
.eyebrow .ico { width: 18px; height: 18px; }
.sec-head { max-width: 720px; margin-bottom: 56px; }
.sec-head h2 { font-size: clamp(36px, 5vw, 60px); }
.sec-head p { color: var(--ink-soft); font-size: 18px; margin-top: 16px; }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.hl { position: relative; white-space: nowrap; z-index: 0; }
.hl::after { content: ""; position: absolute; left: -2%; right: -2%; bottom: .06em; height: .32em; background: var(--sun); z-index: -1; border-radius: 6px;
  transform: scaleX(0); transform-origin: 0 50%; transition: transform .9s var(--ease) .5s; }
.in .hl::after { transform: scaleX(1); }

/* About */
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: center; }
.about-photo { position: relative; aspect-ratio: 4/5; border-radius: var(--radius); background: linear-gradient(160deg, #e4ebf6, #d5e0f2);
  display: grid; place-items: center; color: var(--ink-soft); font-size: 14px; text-align: center; }
.about-photo .img { position: absolute; inset: 0; border-radius: var(--radius); overflow: hidden; }
.about-photo .img img { width: 100%; height: 100%; object-fit: cover; }
.about-photo .sticker { position: absolute; right: -24px; bottom: 30px; width: 120px; height: 120px; background: #fff; border-radius: 50%; box-shadow: 0 14px 30px rgba(14,27,46,.12); }
.sticker svg { width: 100%; height: 100%; animation: spin 18s linear infinite; }
.sticker text { font-family: var(--sans); font-size: 10.5px; font-weight: 700; letter-spacing: .2em; fill: var(--ink); }
.sticker .center { position: absolute; inset: 0; display: grid; place-items: center; color: var(--coral); }
.sticker .center .ico { width: 34px; height: 34px; }
.about-text p { color: var(--ink-soft); margin-top: 16px; }
.about-text .btn { margin-top: 30px; }
.pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.pill { display: inline-flex; align-items: center; gap: 8px; padding: 9px 16px; border-radius: 999px; background: #fff; border: 1px solid var(--line); font-size: 15px; font-weight: 500; transition: transform .3s var(--ease), border-color .3s; }
.pill:hover { transform: translateY(-3px); border-color: var(--ink); }
.pill .ico { width: 18px; height: 18px; color: var(--sky-d); }

/* Services bento */
.services-sec { background: #fff; border-radius: 48px; margin: 0 14px; }
.bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
.card { position: relative; border-radius: var(--radius); padding: 32px; overflow: hidden; transition: transform .5s var(--ease), box-shadow .5s var(--ease); will-change: transform; }
.card:hover { box-shadow: 0 24px 50px rgba(14,27,46,.1); }
.card .num { font-family: var(--display); font-size: 15px; font-weight: 700; opacity: .5; }
.card .icon { width: 60px; height: 60px; border-radius: 18px; background: rgba(255,255,255,.75); display: grid; place-items: center; margin: 18px 0 22px; transition: transform .5s var(--ease); }
.card:hover .icon { transform: rotate(-10deg) scale(1.08); }
.card .icon .ico { width: 30px; height: 30px; stroke-width: 1.5; }
.card h3 { font-size: 27px; margin-bottom: 10px; position: relative; }
.card p { color: var(--ink-soft); font-size: 16px; position: relative; max-width: 440px; }
.card .deco { position: absolute; right: -34px; bottom: -34px; width: 170px; height: 170px; opacity: .28; stroke-width: .8; transition: transform .8s var(--ease); }
.card:hover .deco { transform: rotate(25deg) scale(1.1); }
.c-mint { background: var(--ink); color: #fff; grid-column: span 3; } .c-mint .ico { color: #8fb3ff; }
.c-mint p { color: #b6c0d2; } .c-mint .icon { background: rgba(255,255,255,.08); } .c-mint .deco { opacity: .18; }
.c-sky { background: var(--sky); grid-column: span 3; } .c-sky .ico { color: var(--sky-d); }
.c-sun { background: #fff; border: 1px solid var(--line); grid-column: span 2; } .c-sun .ico { color: var(--sun-d); }
.c-lilac { background: var(--lilac); grid-column: span 2; } .c-lilac .ico { color: var(--lilac-d); }
.c-peach { background: var(--accent); color: #fff; grid-column: span 2; }
.c-peach p { color: #dbe6fb; } .c-peach .icon { background: rgba(255,255,255,.14); } .c-peach .ico { color: #fff; }

/* Process */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.steps-line { position: absolute; top: 34px; left: 12%; right: 12%; height: 3px; background: var(--line); border-radius: 3px; overflow: hidden; }
.steps-line span { display: block; height: 100%; width: 100%; background: linear-gradient(90deg, var(--ink), var(--accent), #6f9cff);
  transform: scaleX(0); transform-origin: 0 50%; transition: transform 1.8s var(--ease) .3s; }
.steps.in .steps-line span { transform: scaleX(1); }
.step { position: relative; text-align: center; padding: 0 8px; }
.step .dot { width: 70px; height: 70px; border-radius: 50%; margin: 0 auto 22px; background: #fff; border: 1.5px solid var(--line); display: grid; place-items: center;
  position: relative; z-index: 1; transition: transform .5s var(--ease), background .4s, border-color .4s; }
.step:hover .dot { transform: translateY(-6px) rotate(-8deg); background: var(--sun); border-color: var(--sun); }
.step .dot .ico { width: 28px; height: 28px; }
.step small { font-weight: 700; color: var(--coral-d); letter-spacing: .1em; font-size: 13px; }
.step h3 { font-size: 22px; margin: 6px 0 8px; }
.step p { color: var(--ink-soft); font-size: 15.5px; }

/* References marquee */
.refs-sec { padding: 100px 0; overflow: hidden; }
.refs-big { font-family: var(--display); font-size: clamp(64px, 11vw, 150px); font-weight: 800; letter-spacing: -0.04em; white-space: nowrap;
  color: transparent; -webkit-text-stroke: 1.5px rgba(14,27,46,.16); line-height: 1.05; --gap: 40px; margin-bottom: 36px; }
.refs-big .item { display: inline-flex; align-items: center; gap: 40px; }
.refs-big .fill { color: var(--ink); -webkit-text-stroke: 0; }
.refs-big .ico { width: .5em; height: .5em; color: var(--coral); stroke-width: 1.2; }
.refs-sub { display: flex; align-items: center; justify-content: center; gap: 8px; margin: -12px 0 26px; font-weight: 600; font-size: 15px; color: var(--ink-soft); letter-spacing: .02em; }
.refs-sub .ico { width: 20px; height: 20px; color: var(--sky-d); }
.logos-row { padding: 10px 0 24px; --gap: 22px; }
.logos-row .marquee-track { align-items: stretch; }
.logo-card { align-content: start; }
.logo-card { flex: none; width: 270px; margin: 0; background: #fff; border: 1px solid var(--line); border-radius: 28px; padding: 26px 22px 22px;
  display: grid; gap: 16px; justify-items: center; text-align: center; transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s; }
.logo-card:hover { transform: translateY(-6px) rotate(-1deg); box-shadow: 0 20px 40px rgba(14,27,46,.1); border-color: transparent; }
.logo-card .lg { height: 110px; width: 100%; display: grid; place-items: center; }
.logo-card img { max-height: 110px; max-width: 100%; width: auto; height: auto; object-fit: contain; transition: transform .5s var(--ease); }
.logo-card:hover img { transform: scale(1.06); }
.logo-card figcaption { display: grid; gap: 2px; }
.logo-card b { font-family: var(--display); font-size: 18px; font-weight: 600; letter-spacing: -0.01em; line-height: 1.25; }
.logo-card small { font-size: 13.5px; color: var(--muted); }
.logo-card.now small { color: var(--coral-d); font-weight: 600; }

/* Quote */
.quote-card { position: relative; border-radius: 40px; padding: 76px 60px; text-align: center; overflow: hidden;
  background: linear-gradient(120deg, #e4ebf6, #f3f6fb 40%, #dde6f4 75%, #eef2f8); background-size: 300% 300%; animation: shift 14s ease infinite; }
.quote-card .qi { width: 56px; height: 56px; color: var(--lilac-d); margin: 0 auto 22px; stroke-width: 1.3; display: block; }
.quote-card blockquote { font-family: var(--display); font-size: clamp(22px, 2.8vw, 32px); font-weight: 500; letter-spacing: -0.02em; line-height: 1.35; max-width: 860px; margin: 0 auto; }
.quote-card cite { display: block; margin-top: 26px; font-style: normal; font-weight: 700; }
.quote-card cite small { display: block; font-weight: 400; color: var(--ink-soft); }

/* News */
.news { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.news-card { text-decoration: none; background: #fff; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); transition: transform .5s var(--ease), box-shadow .5s; display: block; }
.news-card:hover { transform: translateY(-8px); box-shadow: 0 24px 50px rgba(14,27,46,.1); }
.news-card .thumb { aspect-ratio: 16/10; display: grid; place-items: center; color: var(--ink-soft); }
.news-card:nth-child(1) .thumb { background: var(--mint); } .news-card:nth-child(2) .thumb { background: var(--sun); } .news-card:nth-child(3) .thumb { background: var(--lilac); }
.news-card .thumb .ico { width: 46px; height: 46px; stroke-width: 1.2; transition: transform .6s var(--ease); }
.news-card:hover .thumb .ico { transform: scale(1.2) rotate(-8deg); }
.news-card .body { padding: 22px 24px 26px; }
.news-card time { font-size: 13px; color: var(--muted); font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
.news-card h3 { font-family: var(--sans); font-size: 18px; font-weight: 600; letter-spacing: -0.01em; line-height: 1.4; margin-top: 8px; }
.news-card .more { display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; font-size: 14px; font-weight: 600; color: var(--coral-d); }
.news-card .more .ico { width: 16px; height: 16px; transition: transform .3s var(--ease); }
.news-card:hover .more .ico { transform: translateX(4px); }

/* Contact */
.contact-card { position: relative; overflow: hidden; border-radius: 40px; padding: 72px; color: #fff; display: grid; grid-template-columns: 1fr 1fr; gap: 72px;
  background: radial-gradient(120% 90% at 0% 0%, #1b3566 0%, rgba(27,53,102,0) 55%), var(--ink); }
.contact-card h2 { font-size: clamp(36px, 4.4vw, 54px); }
.contact-card .eyebrow { color: #8fb3ff; }
.contact-card .sub { color: #aeb8cb; margin-top: 16px; max-width: 440px; }
.c-list { margin-top: 40px; border-top: 1px solid rgba(255,255,255,.1); }
.c-row { display: flex; align-items: center; gap: 18px; padding: 20px 4px; border-bottom: 1px solid rgba(255,255,255,.1); text-decoration: none; transition: padding .35s var(--ease); }
.c-row > .ico:first-child { width: 22px; height: 22px; color: #8fb3ff; }
.c-row span { flex: 1; }
.c-row small { display: block; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: #8390a8; }
.c-row b { font-weight: 500; font-size: 18px; }
.c-arrow { width: 20px; height: 20px; color: #8390a8; transform: rotate(-45deg); transition: transform .35s var(--ease), color .2s; }
.c-row:hover { padding-left: 12px; }
.c-row:hover .c-arrow { transform: rotate(0); color: #fff; }
form.cform { display: grid; gap: 26px; align-content: start; padding-top: 8px; }
.cform .row { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.field { position: relative; }
.field input, .field textarea { width: 100%; border: 0; border-bottom: 1px solid rgba(255,255,255,.22); border-radius: 0; background: transparent; color: #fff;
  font: inherit; font-size: 17px; padding: 22px 0 10px; outline: none; resize: none; transition: border-color .25s; }
.field textarea { min-height: 96px; }
.field label { position: absolute; left: 0; top: 22px; color: #8390a8; font-size: 16px; pointer-events: none; transition: all .25s var(--ease); }
.field::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: #8fb3ff; transform: scaleX(0); transform-origin: 0 50%; transition: transform .4s var(--ease); }
.field:focus-within::after { transform: scaleX(1); }
.field input:focus + label, .field input:not(:placeholder-shown) + label,
.field textarea:focus + label, .field textarea:not(:placeholder-shown) + label { top: 0; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: #8fb3ff; }
.consent { display: flex; gap: 12px; align-items: flex-start; font-size: 13.5px; color: #aeb8cb; line-height: 1.55; }
.consent a { color: #fff; }
.consent input { margin-top: 2px; accent-color: var(--accent); width: 16px; height: 16px; flex: none; }
.form-foot { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { background: #8fb3ff; color: var(--ink); }
.form-note { font-size: 13px; color: #8390a8; display: flex; align-items: center; gap: 6px; }
.form-note .ico { width: 16px; height: 16px; }

/* Footer */
footer { padding: 50px 0 40px; color: var(--muted); font-size: 14px; }
.foot { display: flex; justify-content: space-between; align-items: center; gap: 18px; flex-wrap: wrap; }
.foot a { text-decoration: none; } .foot a:hover { color: var(--ink); }
.foot .disc { width: 100%; font-size: 13px; }

/* WhatsApp float */
.wa-float { position: fixed; right: 20px; bottom: 20px; z-index: 70; width: 60px; height: 60px; border-radius: 50%; background: #fff; color: #1fa855;
  display: grid; place-items: center; box-shadow: 0 12px 30px rgba(14,27,46,.16); border: 1.5px solid #c9f2d8; transition: transform .3s var(--ease); }
.wa-float:hover { transform: scale(1.08) rotate(-8deg); }
.wa-float .ico { width: 28px; height: 28px; }
.wa-float::after { content: ""; position: absolute; inset: -6px; border-radius: 50%; border: 2px solid #1fa855; opacity: 0; animation: ring 2.6s infinite; }

/* ---------- Inner pages ---------- */
.page-hero { padding: 160px 0 50px; position: relative; overflow: hidden; }
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(42px, 6vw, 78px); max-width: 900px; }
.page-hero p { color: var(--ink-soft); font-size: 19px; max-width: 640px; margin-top: 18px; }
.page { padding: 30px 0 100px; }
.page-grid { display: grid; grid-template-columns: 1.4fr .8fr; gap: 60px; align-items: start; }
.page article h2 { font-size: 27px; margin: 46px 0 12px; display: flex; align-items: center; gap: 14px; }
.page article h2 i { width: 44px; height: 44px; border-radius: 14px; display: grid; place-items: center; flex: none; }
.page article h2:nth-of-type(5n+1) i { background: var(--mint); color: var(--mint-d); }
.page article h2:nth-of-type(5n+2) i { background: var(--sky); color: var(--sky-d); }
.page article h2:nth-of-type(5n+3) i { background: var(--sun); color: var(--sun-d); }
.page article h2:nth-of-type(5n+4) i { background: var(--lilac); color: var(--lilac-d); }
.page article h2:nth-of-type(5n) i { background: var(--peach); color: var(--coral-d); }
.page article h2 .ico { width: 22px; height: 22px; }
.page article p { color: var(--ink-soft); }
.page article p + p { margin-top: 14px; }
.page article .intro { font-size: 20px; color: var(--ink); }
.page-photo { position: sticky; top: 110px; aspect-ratio: 3/4; border-radius: var(--radius); overflow: hidden; background: linear-gradient(160deg, #e4ebf6, #eef2f8);
  display: grid; place-items: center; color: var(--ink-soft); font-size: 14px; text-align: center; }
.page-photo img { width: 100%; height: 100%; object-fit: cover; }
.cv-list { list-style: none; display: grid; gap: 12px; margin-top: 8px; }
.cv-list li { display: grid; grid-template-columns: 120px 1fr; gap: 16px; padding: 18px 22px; background: #fff; border: 1px solid var(--line); border-radius: 18px; transition: transform .3s var(--ease), border-color .3s; }
.cv-list li:hover { transform: translateX(6px); border-color: var(--ink); }
.cv-list li span:first-child { color: var(--coral-d); font-weight: 700; font-size: 14px; }
.legal { max-width: 820px; }
.legal p { color: var(--ink-soft); }
.legal p + p { margin-top: 12px; }
.legal h2 { font-size: 22px; margin: 34px 0 10px; }

/* ---------- Reveal ---------- */
.js .reveal { opacity: 0; transform: translateY(40px); transition: opacity 1s var(--ease), transform 1s var(--ease); transition-delay: var(--d, 0s); }
.reveal.in { opacity: 1; transform: none; }
.split .w { display: inline-block; overflow: hidden; vertical-align: top; padding-bottom: .1em; margin-bottom: -.1em; }
.js .split .w > span { display: inline-block; transform: translateY(110%); transition: transform .9s var(--ease); transition-delay: calc(var(--i) * 70ms); }
.split.in .w > span { transform: none; }

/* ---------- Keyframes ---------- */
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes float { 0%,100% { transform: translate(0,0) scale(1); } 33% { transform: translate(40px,-30px) scale(1.06); } 66% { transform: translate(-30px,25px) scale(.95); } }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes draw { to { stroke-dashoffset: 0; } }
@keyframes run { to { offset-distance: 100%; } }
@keyframes morph { 0%,100% { border-radius: 42% 58% 55% 45% / 48% 42% 58% 52%; } 50% { border-radius: 58% 42% 45% 55% / 55% 58% 42% 45%; } }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(42,91,215,.5); } 70% { box-shadow: 0 0 0 12px rgba(42,91,215,0); } 100% { box-shadow: 0 0 0 0 rgba(42,91,215,0); } }
@keyframes scroll { to { transform: translateX(-100%); } }
@keyframes shift { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
@keyframes ring { 0% { transform: scale(.9); opacity: .6; } 100% { transform: scale(1.35); opacity: 0; } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal, .split .w > span { opacity: 1; transform: none; }
  .ring .draw { stroke-dashoffset: 0; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1060px) {
  .menu a { padding: 9px 10px; font-size: 14.5px; }
}
@media (max-width: 1000px) {
  .hero-grid, .about-grid, .contact-card, .page-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-art { max-width: 440px; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .c-mint, .c-sky, .c-sun, .c-lilac { grid-column: span 1; }
  .c-peach { grid-column: span 2; }
  .steps { grid-template-columns: repeat(2, 1fr); row-gap: 44px; }
  .steps-line { display: none; }
  .news { grid-template-columns: 1fr; max-width: 560px; }
  .about-photo { max-width: 440px; }
  .page-photo { position: static; max-width: 380px; }
  .contact-card { padding: 54px 40px; gap: 48px; }
}
@media (max-width: 900px) {
  .menu-toggle { display: grid; }
  .lang { margin-left: auto; }
  .nav { gap: 10px; }
  .menu { position: absolute; top: calc(100% + 10px); left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 2px; padding: 12px;
    background: #fff; border-radius: 28px; box-shadow: 0 20px 50px rgba(14,27,46,.15); opacity: 0; transform: translateY(-10px) scale(.98); pointer-events: none; transition: all .3s var(--ease); }
  .menu.open { opacity: 1; transform: none; pointer-events: auto; }
  .menu a { padding: 14px 18px; font-size: 17px; }
  .menu .cta { justify-content: center; margin-top: 6px; padding: 14px; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .wrap { padding: 0 16px; }
  section { padding: 76px 0; }
  .hero { padding: 120px 0 70px; }
  .hero .lead { font-size: 17px; }
  .bento { grid-template-columns: 1fr; }
  .c-peach { grid-column: span 1; }
  .card { padding: 26px; }
  .steps { grid-template-columns: 1fr; }
  .services-sec { margin: 0 8px; border-radius: 32px; }
  .float-chip { font-size: 12.5px; padding: 7px 12px 7px 7px; gap: 8px; }
  .float-chip i { width: 30px; height: 30px; border-radius: 10px; }
  .float-chip .ico { width: 17px; height: 17px; }
  .fc1 { left: -2%; } .fc2 { right: -3%; } .fc3 { left: 0; }
  .skills-band .item { font-size: 22px; }
  .logo-card { width: 220px; padding: 20px 18px 18px; }
  .logo-card .lg { height: 88px; }
  .logo-card img { max-height: 88px; }
  .quote-card { padding: 50px 24px; border-radius: 30px; }
  .contact-card { padding: 42px 22px; border-radius: 28px; }
  .cform .row { grid-template-columns: 1fr; }
  .cv-list li { grid-template-columns: 1fr; gap: 4px; }
  .about-photo .sticker { right: 10px; bottom: -20px; width: 100px; height: 100px; }
  .page-hero { padding: 130px 0 30px; }
}
