/* GoRest web sitesi — gopos.com.tr ile aynı görsel dil:
   Plus Jakarta Sans, lacivert metin, turuncu→amber vurgu, hap düğmeler. */

:root {
  --navy: #1e2340;
  --text: #1e2340;
  --muted: #5b6178;
  --faint: #8a90a6;
  --bg: #ffffff;
  --soft: #fff6f1;
  --border: #eceef4;
  --orange: #ff5931;
  --amber: #f3b859;
  --ok: #1f9d63;
  --grad: linear-gradient(120deg, #ff5931 0%, #f3b859 100%);
  --btn: linear-gradient(135deg, #ff7a45 0%, #ff5931 100%);
  --r: 20px;
  --shadow-sm: 0 2px 10px rgba(30, 35, 64, .06);
  --shadow: 0 18px 50px -18px rgba(30, 35, 64, .25);
  --max: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Plus Jakarta Sans", Inter, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--orange); text-decoration: none; }
a:hover { text-decoration: underline; }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, .86);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--border);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 20px; }
.brand { display: flex; align-items: center; }
.brand:hover { text-decoration: none; }
.brand img { height: 46px; width: auto; }
.nav { display: flex; align-items: center; gap: 28px; }
.nav a { color: var(--muted); font-weight: 600; font-size: .95rem; }
.nav a:hover { color: var(--navy); text-decoration: none; }
.nav a.btn { color: #fff; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 26px; border-radius: 9999px;
  font-weight: 700; font-size: 1rem; line-height: 1;
  border: 0; cursor: pointer; white-space: nowrap;
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary { background: var(--btn); color: #fff; box-shadow: 0 12px 28px -10px rgba(255, 89, 49, .65); }
.btn-ghost { background: #fff; color: var(--navy); box-shadow: var(--shadow-sm); border: 1px solid var(--border); }
.btn-sm { padding: 10px 18px; font-size: .92rem; }

/* Mağaza düğmesi: uygulama yayınlanana kadar "yakında" */
.store {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 10px 22px 10px 16px; border-radius: 14px;
  background: var(--navy); color: #fff; box-shadow: var(--shadow-sm);
}
.store:hover { text-decoration: none; }
.store svg { width: 26px; height: 26px; flex: 0 0 auto; }
.store small { display: block; font-size: .7rem; opacity: .75; font-weight: 600; letter-spacing: .02em; line-height: 1.2; }
.store b { display: block; font-size: 1.05rem; line-height: 1.15; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  padding: 72px 0 90px;
  background:
    radial-gradient(900px 420px at 85% -10%, rgba(243, 184, 89, .28), transparent 60%),
    radial-gradient(700px 400px at -5% 20%, rgba(255, 89, 49, .14), transparent 60%),
    linear-gradient(180deg, #fff 0%, var(--soft) 100%);
}
.hero .wrap { display: grid; grid-template-columns: 1.08fr .92fr; gap: 48px; align-items: center; }
.pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 16px 7px 8px; border-radius: 9999px;
  background: #fff; border: 1px solid var(--border); box-shadow: var(--shadow-sm);
  font-size: .86rem; font-weight: 700; color: var(--navy);
}
.pill .dot { width: 22px; height: 22px; border-radius: 50%; background: var(--grad); }
.hero h1 {
  margin: 22px 0 18px;
  font-size: clamp(2.2rem, 4.6vw, 3.6rem);
  line-height: 1.08; font-weight: 900; letter-spacing: -.03em;
}
.grad-text { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p.lead { font-size: 1.15rem; color: var(--muted); max-width: 560px; margin: 0 0 22px; }
.checks { list-style: none; padding: 0; margin: 0 0 30px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px 20px; max-width: 560px; }
.checks li { display: flex; gap: 10px; align-items: flex-start; font-weight: 600; font-size: .95rem; }
.checks li::before {
  content: ""; flex: 0 0 20px; height: 20px; margin-top: 2px; border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5l4.5 4.5L19 7.5'/%3E%3C/svg%3E"), linear-gradient(120deg, #ff5931 0%, #f3b859 100%);
  background-size: 12px, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
}
.cta-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.trust { margin-top: 26px; display: flex; align-items: flex-start; gap: 10px; color: var(--muted); font-size: .9rem; font-weight: 600; }
.trust .gopos { font-weight: 900; letter-spacing: -.02em; }
.trust svg { flex: 0 0 auto; margin-top: 2px; }

/* Telefon maketi */
.device-stage { position: relative; display: flex; justify-content: center; }
.device-stage::before {
  content: ""; position: absolute; inset: 8% 6% 4%;
  background: var(--grad); filter: blur(60px); opacity: .28; border-radius: 50%;
}
.phone {
  position: relative; width: 300px; aspect-ratio: 300 / 620;
  background: #0f1226; border-radius: 46px; padding: 12px;
  box-shadow: 0 40px 80px -30px rgba(30, 35, 64, .55), inset 0 0 0 2px #2a2f4a;
}
.phone .notch { position: absolute; top: 20px; left: 50%; transform: translateX(-50%); width: 96px; height: 26px; background: #0f1226; border-radius: 20px; z-index: 2; }
.screen { position: relative; height: 100%; background: #f6f7fb; border-radius: 36px; overflow: hidden; padding: 52px 14px 14px; font-size: 12px; line-height: 1.4; }
.app-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.app-top img { height: 30px; width: auto; }
.app-top .avatar { width: 28px; height: 28px; border-radius: 50%; background: var(--grad); }
.points-card {
  border-radius: 18px; padding: 14px; color: #fff; margin-bottom: 12px;
  background: linear-gradient(135deg, #1e2340 0%, #33395f 100%);
  position: relative; overflow: hidden;
}
.points-card::after { content: ""; position: absolute; right: -30px; top: -30px; width: 110px; height: 110px; border-radius: 50%; background: var(--grad); opacity: .45; }
.points-card small { opacity: .7; font-weight: 600; }
.points-card strong { display: block; font-size: 26px; font-weight: 900; letter-spacing: -.02em; line-height: 1.15; margin-top: 2px; }
.points-card .code { margin-top: 8px; display: inline-block; padding: 3px 9px; border-radius: 99px; background: rgba(255,255,255,.14); font-weight: 700; letter-spacing: .08em; font-size: 11px; position: relative; z-index: 1; }
.chip-row { display: flex; gap: 6px; margin-bottom: 10px; }
.chip { padding: 5px 10px; border-radius: 99px; background: #fff; border: 1px solid var(--border); font-weight: 700; font-size: 11px; color: var(--muted); }
.chip.on { background: var(--navy); color: #fff; border-color: var(--navy); }
.rest {
  display: flex; gap: 10px; align-items: center;
  background: #fff; border-radius: 16px; padding: 9px; margin-bottom: 8px; box-shadow: var(--shadow-sm);
}
.rest .thumb { width: 50px; height: 50px; border-radius: 12px; flex: 0 0 auto; display: grid; place-items: center; color: #fff; }
.rest .thumb svg { width: 22px; height: 22px; opacity: .95; }
.rest .t1 { background: linear-gradient(135deg, #ffb37a, #ff5931); }
.rest .t2 { background: linear-gradient(135deg, #ffe29a, #e8b54d); }
.rest .t3 { background: linear-gradient(135deg, #9fd9b4, #1f9d63); }
.rest b { display: block; font-size: 12.5px; }
.rest span { color: var(--faint); font-size: 11px; font-weight: 600; }
.rest .go { margin-left: auto; padding: 5px 10px; border-radius: 99px; background: var(--btn); color: #fff; font-weight: 800; font-size: 10.5px; }

.float {
  position: absolute; background: #fff; border-radius: 16px; padding: 10px 14px;
  box-shadow: var(--shadow); display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 700; white-space: nowrap; z-index: 3; line-height: 1.3;
  animation: bob 5s ease-in-out infinite;
}
.float small { display: block; color: var(--faint); font-size: 11px; font-weight: 600; }
.float .ic { width: 34px; height: 34px; border-radius: 12px; display: grid; place-items: center; color: #fff; flex: 0 0 auto; }
.float .ic svg { width: 18px; height: 18px; }
.float.f1 { top: 38%; left: -10%; }
.float.f1 .ic { background: var(--grad); }
.float.f2 { bottom: 12%; right: -8%; animation-delay: -2.5s; }
.float.f2 .ic { background: var(--ok); }
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@media (prefers-reduced-motion: reduce) { .float { animation: none; } html { scroll-behavior: auto; } }

/* ---------- Sections ---------- */
section.block { padding: 96px 0; }
section.alt { background: var(--soft); }
.eyebrow { display: inline-block; font-size: .8rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--orange); margin-bottom: 10px; }
.head { text-align: center; max-width: 720px; margin: 0 auto 52px; }
.head h2 { margin: 0 0 12px; font-size: clamp(1.8rem, 3.4vw, 2.6rem); line-height: 1.15; font-weight: 900; letter-spacing: -.025em; }
.head p { margin: 0; color: var(--muted); font-size: 1.08rem; }

.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--r);
  padding: 26px; box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.icon {
  width: 52px; height: 52px; border-radius: 16px; display: grid; place-items: center;
  background: var(--grad); color: #fff; margin-bottom: 18px;
  box-shadow: 0 10px 22px -10px rgba(255, 89, 49, .7);
}
.icon svg { width: 26px; height: 26px; }
.card h3 { margin: 0 0 8px; font-size: 1.12rem; font-weight: 800; letter-spacing: -.01em; }
.card p { margin: 0; color: var(--muted); font-size: .95rem; }

.steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; counter-reset: s; }
.step { position: relative; background: #fff; border-radius: var(--r); padding: 30px 26px 26px; border: 1px solid var(--border); }
.step::before {
  counter-increment: s; content: counter(s);
  display: grid; place-items: center; width: 44px; height: 44px; border-radius: 14px;
  background: var(--navy); color: #fff; font-weight: 900; font-size: 1.1rem; margin-bottom: 16px;
}
.step h3 { margin: 0 0 6px; font-size: 1.1rem; font-weight: 800; }
.step p { margin: 0; color: var(--muted); font-size: .95rem; }

/* Puan bandı */
.band {
  border-radius: 28px; padding: 54px; color: #fff;
  background:
    radial-gradient(500px 260px at 100% 0%, rgba(243, 184, 89, .35), transparent 60%),
    radial-gradient(420px 260px at 0% 100%, rgba(255, 89, 49, .3), transparent 60%),
    var(--navy);
  display: grid; grid-template-columns: 1.2fr .8fr; gap: 40px; align-items: center;
}
.band .eyebrow { color: var(--amber); }
.band h2 { margin: 0 0 12px; font-size: clamp(1.7rem, 3vw, 2.4rem); line-height: 1.15; font-weight: 900; letter-spacing: -.025em; }
.band p { margin: 0 0 22px; color: rgba(255,255,255,.75); font-size: 1.05rem; }
.band ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 10px; }
.band li { display: flex; gap: 10px; font-weight: 600; }
.band li::before { content: "✓"; color: var(--amber); font-weight: 900; }
.stat { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: 22px; padding: 30px; text-align: center; }
.stat .big { font-size: clamp(3rem, 6vw, 4.4rem); font-weight: 900; line-height: 1; letter-spacing: -.04em; }
.stat span { display: block; margin-top: 10px; color: rgba(255,255,255,.75); font-weight: 600; }

/* İşletmeler */
.biz { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.biz h2 { margin: 0 0 14px; font-size: clamp(1.8rem, 3.2vw, 2.5rem); line-height: 1.15; font-weight: 900; letter-spacing: -.025em; }
.biz p { color: var(--muted); font-size: 1.05rem; margin: 0 0 24px; }
.biz-list { display: grid; gap: 14px; }
.biz-item { display: flex; gap: 14px; align-items: flex-start; background: #fff; border: 1px solid var(--border); border-radius: 18px; padding: 18px; }
.biz-item .icon { width: 42px; height: 42px; border-radius: 13px; margin: 0; flex: 0 0 auto; }
.biz-item .icon svg { width: 21px; height: 21px; }
.biz-item b { display: block; margin-bottom: 2px; }
.biz-item span { color: var(--muted); font-size: .93rem; }

/* SSS */
.faq { max-width: 820px; margin: 0 auto; display: grid; gap: 12px; }
.faq details { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 4px 22px; }
.faq summary { cursor: pointer; list-style: none; padding: 16px 0; font-weight: 800; display: flex; justify-content: space-between; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--orange); font-size: 1.4rem; line-height: 1; }
.faq details[open] summary::after { content: "−"; }
.faq details p { margin: 0 0 18px; color: var(--muted); }

/* ---------- Legal pages ---------- */
.legal-hero { padding: 56px 0 28px; background: radial-gradient(700px 300px at 90% -20%, rgba(243,184,89,.25), transparent 60%), linear-gradient(180deg, #fff 0%, var(--soft) 100%); border-bottom: 1px solid var(--border); }
.legal-hero h1 { margin: 12px 0 8px; font-size: clamp(1.9rem, 3.6vw, 2.7rem); line-height: 1.12; font-weight: 900; letter-spacing: -.025em; }
.legal-hero p { margin: 0; color: var(--muted); max-width: 760px; }
.legal { max-width: 860px; margin: 0 auto; padding: 44px 24px 80px; }
.legal h2 { margin: 38px 0 10px; font-size: 1.28rem; font-weight: 800; letter-spacing: -.01em; }
.legal h2:first-child { margin-top: 0; }
.legal p, .legal li { color: #3a4060; }
.legal ol, .legal ul { padding-left: 22px; }
.legal li { margin: 5px 0; }
.legal .note { background: var(--soft); border: 1px solid #ffe3d6; border-radius: 16px; padding: 16px 20px; }
.legal .steps-list { counter-reset: st; list-style: none; padding: 0; display: grid; gap: 10px; }
.legal .steps-list li { counter-increment: st; position: relative; background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 14px 16px 14px 60px; margin: 0; min-height: 58px; }
.legal .steps-list li::before { content: counter(st); position: absolute; left: 16px; top: 50%; transform: translateY(-50%); width: 30px; height: 30px; border-radius: 10px; display: grid; place-items: center; background: var(--grad); color: #fff; font-weight: 900; }
.legal-hero .wrap { max-width: 860px; }
.table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: 16px; margin: 12px 0; }
table { width: 100%; border-collapse: collapse; font-size: .94rem; }
th, td { text-align: left; padding: 11px 14px; border-bottom: 1px solid var(--border); vertical-align: top; }
tr:last-child td { border-bottom: 0; }
th { background: #fafbfd; font-weight: 800; color: var(--navy); }
.two { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.box { background: #fff; border: 1px solid var(--border); border-radius: 18px; padding: 20px 22px; }
.box h3 { margin: 0 0 8px; font-size: 1.02rem; font-weight: 800; }
.box ul { margin: 0; }
.box.ok h3 { color: var(--ok); }
.box.keep h3 { color: #b7791f; }
.en { margin-top: 44px; padding-top: 26px; border-top: 1px solid var(--border); }
.en h2 { margin-top: 0; }
.en p { color: var(--muted); font-size: .94rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: rgba(255,255,255,.7); padding: 64px 0 28px; }
.site-footer .top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,.1); }
.site-footer .logo-box { display: inline-flex; background: #fff; border-radius: 16px; padding: 8px 12px; margin-bottom: 14px; }
.site-footer .logo-box img { height: 44px; width: auto; }
.site-footer p { margin: 0; max-width: 360px; font-size: .95rem; }
.site-footer h4 { color: #fff; margin: 0 0 14px; font-size: .95rem; font-weight: 800; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.site-footer a { color: rgba(255,255,255,.75); font-size: .95rem; }
.site-footer a:hover { color: #fff; }
.site-footer .bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px; padding-top: 22px; font-size: .86rem; }

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero .wrap, .band, .biz { grid-template-columns: 1fr; }
  .device-stage { margin-top: 10px; }
}
@media (max-width: 720px) {
  .nav a:not(.btn) { display: none; }
  .hero { padding: 44px 0 64px; }
  .checks { grid-template-columns: 1fr; }
  .steps, .grid-4, .two { grid-template-columns: 1fr; }
  section.block { padding: 68px 0; }
  .band { padding: 34px 24px; border-radius: 22px; }
  .site-footer .top { grid-template-columns: 1fr; }
  .float.f1 { left: 0; }
  .float.f2 { right: 0; }
  .phone { width: 270px; }
}
