﻿:root {
  --bg: #f3f4ef;
  --surface: #ffffff;
  --ink: #1d2533;
  --muted: #5f6877;
  --line: #d7dce6;
  --brand: #d95f20;
  --brand-dark: #a74616;
  --navy: #162238;
  --soft-navy: #223a61;
  --radius: 18px;
  --shadow: 0 20px 42px rgba(22, 34, 56, 0.12);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  background: linear-gradient(180deg, #fbfbf9 0%, var(--bg) 52%, #f1f2ee 100%);
  color: var(--ink);
  line-height: 1.6;
}

.bg-orb {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 8% 12%, rgba(217, 95, 32, 0.14), rgba(217, 95, 32, 0) 32%),
    radial-gradient(circle at 92% 0%, rgba(22, 34, 56, 0.13), rgba(22, 34, 56, 0) 35%);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  line-height: 1.1;
}

p {
  margin: 0;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid #dee3ea;
  background: rgba(250, 250, 248, 0.9);
  backdrop-filter: blur(10px);
}

.navbar {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.logo img {
  width: 150px;
  height: 78px;
  object-fit: cover;
  object-position: left center;
  display: block;
  flex-shrink: 0;
}

.logo span {
  color: var(--navy);
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
}

.nav-links a:hover {
  color: var(--brand);
}

.nav-links .pill {
  border: 1px solid var(--brand);
  color: var(--brand);
  border-radius: 999px;
  padding: 0.45rem 0.84rem;
}

.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 8px;
}

.menu-btn span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 7px 0;
  background: var(--ink);
}

.hero {
  padding: 4.8rem 0 3.2rem;
}

.hero-wrap {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1rem;
  align-items: stretch;
}

.hero-main {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 6px);
  box-shadow: var(--shadow);
  padding: 1.85rem;
}

.tag {
  color: var(--brand);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.76rem;
  font-weight: 800;
}

h1 {
  margin-top: 0.8rem;
  font-size: clamp(2rem, 4.4vw, 3.6rem);
  color: var(--navy);
  max-width: 14ch;
}

.subtitle {
  margin-top: 0.95rem;
  color: var(--muted);
  max-width: 60ch;
}

.hero-cta {
  margin-top: 1.3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.74rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 11px;
  font-weight: 800;
  border: 1px solid transparent;
  padding: 0.76rem 1.08rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-solid {
  color: #fff;
  background: linear-gradient(130deg, var(--brand) 0%, #f0874f 100%);
  box-shadow: 0 10px 24px rgba(217, 95, 32, 0.28);
}

.btn-outline {
  color: var(--navy);
  border-color: var(--line);
  background: #fff;
}

.hero-strip {
  margin-top: 1.08rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.48rem;
}

.hero-strip span {
  border: 1px solid #d8dee8;
  border-radius: 999px;
  background: #fafbfd;
  color: #314159;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.32rem 0.62rem;
}

.hero-console {
  border-radius: calc(var(--radius) + 6px);
  background: linear-gradient(160deg, var(--navy) 0%, var(--soft-navy) 100%);
  color: #eef3ff;
  box-shadow: 0 22px 44px rgba(16, 24, 38, 0.28);
  padding: 1.5rem;
}

.hero-console h2 {
  font-size: 1.4rem;
}

.hero-console p {
  margin-top: 0.56rem;
  color: #c8d2e8;
}

.console-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.56rem;
}

.console-grid article {
  border: 1px solid rgba(224, 234, 255, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  padding: 0.62rem;
  display: grid;
  gap: 0.2rem;
}

.console-grid strong {
  font-size: 0.95rem;
}

.console-grid span {
  font-size: 0.8rem;
  color: #ced8ed;
}

.hero-console ul {
  margin: 0.95rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.52rem;
}

.hero-console li {
  display: grid;
  grid-template-columns: 11px 1fr;
  gap: 0.5rem;
  align-items: start;
}

.hero-console li span {
  width: 11px;
  height: 11px;
  margin-top: 0.34rem;
  border-radius: 999px;
  background: #ffbb95;
  box-shadow: 0 0 0 4px rgba(255, 187, 149, 0.18);
}

.regulation-intro {
  padding: 0.2rem 0 1.5rem;
}

.regulation-content {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.15rem 1.2rem;
  box-shadow: 0 10px 22px rgba(18, 28, 44, 0.07);
}

.regulation-title {
  margin: 0 0 0.65rem;
  color: var(--navy);
  font-size: clamp(1.3rem, 2.7vw, 2rem);
}

.regulation-content p {
  color: #2f3a4d;
  font-size: 1.04rem;
  line-height: 1.72;
  margin-bottom: 0.88rem;
}

.regulation-content p:last-child {
  margin-bottom: 0;
}

.section {
  padding: 4rem 0;
}

.section-band {
  background: linear-gradient(180deg, rgba(22, 34, 56, 0.04), rgba(22, 34, 56, 0));
}

.section-title {
  margin-bottom: 1.28rem;
}

.section h2 {
  margin-top: 0.65rem;
  font-size: clamp(1.62rem, 3.3vw, 2.45rem);
  color: var(--navy);
}

.solution-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.solution-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem;
}

.solution-card h3 {
  font-size: 1.06rem;
  color: var(--navy);
}

.solution-card ul {
  margin: 0.6rem 0 0;
  padding-left: 1rem;
  color: var(--muted);
}

.solution-card li {
  margin-bottom: 0.26rem;
}

.note-area {
  padding-top: 0.6rem;
  padding-bottom: 0.8rem;
}

.notice-box {
  border: 1px solid #2f4a78;
  background: #eef2f9;
  border-radius: 8px;
  padding: 1rem 1.15rem;
}

.notice-box h3 {
  color: #1b2f57;
  font-size: 1.35rem;
  margin-bottom: 0.56rem;
}

.notice-box p {
  color: #273247;
  font-size: 1.03rem;
  line-height: 1.65;
}

.why-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 1rem;
}

.why-main {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.1rem;
}

.why-main p:last-child {
  margin-top: 0.8rem;
  color: var(--muted);
}

.company-subtitle {
  margin-top: 0.75rem;
  color: var(--muted);
  font-weight: 600;
}

.why-list {
  display: grid;
  gap: 0.7rem;
}

.why-list article {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--brand);
  border-radius: 14px;
  padding: 0.9rem;
}

.why-list strong {
  color: var(--navy);
}

.why-list p {
  margin-top: 0.38rem;
  color: var(--muted);
}

.roadmap {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.roadmap li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.82rem 1rem;
}

.contact-area {
  padding-top: 2.3rem;
}

.contact-wrap {
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 8px);
  background: linear-gradient(165deg, #ffffff 0%, #f4f6fb 100%);
  padding: 1.2rem;
  display: grid;
  grid-template-columns: 1fr 1.06fr;
  gap: 1rem;
}

.contact-copy p:last-child {
  margin-top: 0.72rem;
  color: var(--muted);
}

.call-now {
  margin-top: 0.9rem;
  display: inline-flex;
  text-decoration: none;
  color: #ffffff;
  background: linear-gradient(130deg, var(--brand-dark) 0%, var(--brand) 100%);
  border-radius: 999px;
  padding: 0.56rem 0.92rem;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(167, 70, 22, 0.28);
}

.contact-copy .call-now + .call-now {
  margin-top: 0.55rem;
}

.contact-form {
  display: grid;
  gap: 0.7rem;
}

.contact-form label {
  font-size: 0.92rem;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-top: 0.34rem;
  border: 1px solid #bfc8d9;
  border-radius: 10px;
  padding: 0.7rem;
  font: inherit;
}

.form-note {
  min-height: 1.2rem;
  font-size: 0.9rem;
}

.form-note a {
  color: inherit;
  font-weight: 800;
}

.footer {
  border-top: 1px solid var(--line);
  margin-top: 2rem;
}

.footer-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.cookie-consent {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  width: min(980px, 94vw);
  z-index: 120;
}

.cookie-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 22px 50px rgba(22, 34, 56, 0.22);
  padding: 1rem;
  display: grid;
  gap: 0.8rem;
}

.cookie-title {
  color: var(--navy);
  font-weight: 800;
  font-size: 1.05rem;
}

.cookie-text {
  margin-top: 0.3rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.cookie-checks {
  display: grid;
  gap: 0.56rem;
}

.cookie-checks label {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 0.52rem;
  align-items: start;
  color: var(--navy);
  font-weight: 700;
}

.cookie-checks input[type="checkbox"] {
  margin-top: 0.2rem;
  width: 16px;
  height: 16px;
  accent-color: #2f68d8;
}

.kvkk-link {
  border: 0;
  background: transparent;
  color: #1b4ea8;
  text-decoration: underline;
  font: inherit;
  font-weight: 800;
  padding: 0;
  cursor: pointer;
}

.cookie-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.cookie-note {
  min-height: 1rem;
  font-size: 0.86rem;
  color: #b42318;
}

.kvkk-modal[hidden] {
  display: none;
}

.kvkk-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
}

.kvkk-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 25, 42, 0.58);
}

.kvkk-panel {
  position: relative;
  width: min(860px, 92vw);
  max-height: 86vh;
  overflow: auto;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #d8dfeb;
  box-shadow: 0 24px 52px rgba(15, 25, 42, 0.28);
  padding: 1rem;
}

.kvkk-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  border-bottom: 1px solid #e1e6f0;
  padding-bottom: 0.7rem;
  margin-bottom: 0.8rem;
}

.kvkk-panel-head h3 {
  color: var(--navy);
  font-size: 1.2rem;
}

.kvkk-panel-head button {
  border: 1px solid #cfdaea;
  border-radius: 10px;
  background: #f8fbff;
  color: var(--navy);
  font-weight: 700;
  padding: 0.4rem 0.65rem;
  cursor: pointer;
}

.kvkk-content h4 {
  color: var(--navy);
  margin-bottom: 0.6rem;
}

.kvkk-content p {
  color: #334157;
  margin-bottom: 0.64rem;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero-wrap,
  .solution-cards,
  .why-grid,
  .contact-wrap,
  .console-grid {
    grid-template-columns: 1fr;
  }

  .cookie-actions {
    justify-content: stretch;
  }

  .cookie-actions .btn {
    width: 100%;
  }

  .nav-links {
    position: fixed;
    top: 86px;
    left: 4vw;
    right: 4vw;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 0.9rem;
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .menu-btn {
    display: block;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
    justify-content: center;
    padding: 1rem 0;
  }
}
