:root {
  --ink: #0a0e1c;
  --ink-2: #111827;
  --ink-3: #1d2435;
  --paper: #f7f8fc;
  --paper-2: #eef1f8;
  --text: #f8f7ff;
  --muted: #a9adbf;
  --dark-text: #17192b;
  --dark-muted: #65697b;
  --pink: #f63792;
  --violet: #7a39ff;
  --cyan: #23b9ff;
  --sun: #ffd166;
  --line: rgba(255, 255, 255, 0.12);
  --line-dark: rgba(17, 19, 42, 0.12);
  --shadow: 0 24px 80px rgba(7, 8, 22, 0.16);
  --radius: 8px;
  --container: min(1160px, calc(100% - 40px));
  --font-body: "Manrope", Arial, sans-serif;
  --font-display: "Plus Jakarta Sans", "Manrope", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(122, 57, 255, 0.05), transparent 22rem),
    var(--ink);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

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

button {
  font: inherit;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 12px;
  width: min(1180px, calc(100% - 28px));
  height: 76px;
  margin: 12px auto 0;
  transform: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 12px 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(10, 14, 28, 0.82);
  backdrop-filter: blur(18px);
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(9, 10, 24, 0.9);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}

.brand {
  display: flex;
  align-items: center;
  height: 100%;
  min-width: 128px;
}

.brand img {
  width: 112px;
  height: auto;
  max-height: 62px;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.desktop-nav a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 6px;
  color: rgba(248, 247, 255, 0.78);
  font-size: 0.82rem;
  font-weight: 700;
  transition: background 0.2s ease, color 0.2s ease;
}

.desktop-nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.login-link,
.btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 8px;
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.login-link,
.btn-primary {
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #121325;
  background: linear-gradient(135deg, var(--sun), #ff8fc9 47%, #bda4ff);
  box-shadow: 0 14px 34px rgba(246, 55, 146, 0.2);
}

.login-link:hover,
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(246, 55, 146, 0.28);
}

.btn-secondary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.1);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto 5px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease;
}

.menu-toggle span:last-child {
  margin-bottom: 0;
}

.mobile-menu {
  position: fixed;
  z-index: 45;
  top: 92px;
  left: 14px;
  right: 14px;
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(12, 14, 31, 0.96);
  backdrop-filter: blur(18px);
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.mobile-menu.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu a {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-weight: 800;
}

.hero-scroll {
  min-height: auto;
  position: relative;
  margin-top: 0;
}

.hero-sticky {
  min-height: calc(100vh - 88px);
  position: relative;
  top: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 72px 0 86px;
  background:
    linear-gradient(90deg, rgba(10, 14, 28, 0.96) 0%, rgba(10, 14, 28, 0.84) 52%, rgba(10, 14, 28, 0.98) 100%),
    radial-gradient(ellipse at 72% 42%, rgba(122, 57, 255, 0.22), transparent 34rem),
    radial-gradient(ellipse at 20% 18%, rgba(246, 55, 146, 0.1), transparent 30rem),
    var(--ink);
}

.hero-sticky::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(90deg, transparent, black 18%, black 82%, transparent);
  opacity: 0.42;
}

.hero-grid {
  position: relative;
  z-index: 2;
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
  align-items: center;
  gap: 54px;
}

.hero-copy {
  max-width: 650px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffd9ee;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--pink), var(--sun));
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-display);
  letter-spacing: 0;
}

h1 {
  margin-top: 18px;
  font-size: clamp(2.9rem, 5.35vw, 5.35rem);
  line-height: 1.04;
  font-weight: 800;
  max-width: 720px;
}

.hero-copy p {
  max-width: 640px;
  margin: 22px 0 0;
  color: rgba(248, 247, 255, 0.74);
  font-size: clamp(1rem, 1.55vw, 1.08rem);
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.trust-strip span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(248, 247, 255, 0.72);
  font-size: 0.84rem;
  font-weight: 800;
}

.hero-visual {
  min-height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.panel-showcase {
  position: relative;
  width: min(620px, 100%);
}

.panel-showcase::before {
  content: "";
  position: absolute;
  inset: 12% -4% -8% 8%;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at center, rgba(246, 55, 146, 0.16), transparent 62%),
    radial-gradient(ellipse at center, rgba(35, 185, 255, 0.1), transparent 66%);
  filter: blur(26px);
}

.showcase-window {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(22, 28, 54, 0.94), rgba(11, 15, 31, 0.94));
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.3);
}

.showcase-bar {
  height: 56px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.035);
}

.showcase-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--pink);
}

.showcase-bar span:nth-child(2) {
  background: var(--sun);
}

.showcase-bar span:nth-child(3) {
  background: var(--cyan);
}

.showcase-bar strong {
  margin-left: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
}

.showcase-body {
  padding: 26px;
}

.showcase-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.showcase-heading div {
  display: grid;
  gap: 6px;
}

.showcase-heading span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.showcase-heading strong {
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2.1rem);
  line-height: 1.1;
}

.showcase-heading img {
  width: 88px;
  height: auto;
}

.showcase-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.showcase-metrics div,
.showcase-feed span {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.showcase-metrics div {
  padding: 16px 14px;
}

.showcase-metrics strong {
  display: block;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.45rem;
}

.showcase-metrics span {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
}

.showcase-bars {
  display: grid;
  gap: 10px;
  margin: 22px 0;
}

.showcase-bars span {
  position: relative;
  min-height: 36px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-left: 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.84rem;
  font-weight: 900;
}

.showcase-bars span::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--w);
  background: linear-gradient(90deg, rgba(246, 55, 146, 0.45), rgba(35, 185, 255, 0.28));
}

.showcase-bars span {
  isolation: isolate;
}

.showcase-feed {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.showcase-feed span {
  min-height: 50px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 900;
}

.section {
  position: relative;
  padding: 112px 0;
  scroll-margin-top: 112px;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.intro-band,
.proof-section {
  color: var(--dark-text);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(247, 246, 251, 0.96)),
    var(--paper);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 60px;
  align-items: center;
}

.reverse {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.section-copy h2,
.section-heading h2,
.contact-copy h2 {
  margin-top: 16px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.06;
  font-weight: 800;
}

.section-copy p,
.section-heading p,
.contact-copy p,
.rich-text p,
.online-copy p {
  color: var(--dark-muted);
  font-size: 1rem;
  line-height: 1.8;
}

.intro-band .eyebrow,
.proof-section .eyebrow {
  color: #8d255b;
}

.rich-text {
  display: grid;
  gap: 18px;
}

.rich-text p {
  margin: 0;
  padding: 22px 0 22px 24px;
  border-left: 2px solid rgba(246, 55, 146, 0.28);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 42px;
}

.section-heading p {
  max-width: 660px;
  margin: 18px 0 0;
  color: rgba(248, 247, 255, 0.68);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.service-card,
.proof-item {
  min-height: 245px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.12);
}

.service-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.075);
}

.service-number {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--sun);
  font-size: 0.82rem;
  font-weight: 900;
}

.service-card h3,
.proof-item h3 {
  margin-top: 22px;
  font-size: 1.2rem;
  line-height: 1.25;
}

.service-card p,
.proof-item p {
  margin: 14px 0 0;
  color: rgba(248, 247, 255, 0.66);
  font-size: 0.94rem;
  line-height: 1.7;
}

.accent-card {
  background:
    linear-gradient(135deg, rgba(246, 55, 146, 0.24), rgba(122, 57, 255, 0.22)),
    rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.24);
}

.branches-section {
  color: var(--dark-text);
  background:
    linear-gradient(135deg, rgba(122, 57, 255, 0.08), transparent 38%),
    linear-gradient(180deg, #ffffff, var(--paper));
}

.branches-section .eyebrow {
  color: #8d255b;
}

.branches-section .section-heading p {
  color: var(--dark-muted);
}

.branches-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.branch-card {
  min-height: 168px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 46px rgba(10, 14, 28, 0.06);
}

.branch-card h3 {
  font-size: 1.08rem;
  line-height: 1.22;
}

.branch-card p {
  margin: 12px 0 0;
  color: var(--dark-muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.branch-feature {
  grid-row: span 2;
  min-height: 348px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(246, 55, 146, 0.2), rgba(122, 57, 255, 0.18)),
    linear-gradient(180deg, #151b30, #0d1224);
  border-color: rgba(255, 255, 255, 0.16);
}

.branch-feature span {
  width: max-content;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 8px;
  color: #151426;
  background: linear-gradient(135deg, var(--sun), #ff98cd);
  font-size: 0.76rem;
  font-weight: 900;
}

.branch-feature h3 {
  margin-top: auto;
  font-size: clamp(2.6rem, 5vw, 4.4rem);
}

.branch-feature p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
}

.online-section {
  color: var(--dark-text);
  background:
    linear-gradient(135deg, rgba(255, 209, 102, 0.28), transparent 40%),
    linear-gradient(180deg, #fbf9ff, #ececf8);
}

.demo-band {
  padding: 46px 0;
  color: var(--dark-text);
  background:
    linear-gradient(135deg, rgba(246, 55, 146, 0.12), rgba(122, 57, 255, 0.1)),
    #ffffff;
}

.demo-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 28px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.demo-inner .eyebrow {
  color: #8d255b;
}

.demo-inner h2 {
  max-width: 740px;
  margin: 12px 0 0;
  color: var(--dark-text);
  font-size: clamp(1.7rem, 3vw, 3rem);
  line-height: 1.08;
}

.online-section .eyebrow,
.contact-section .eyebrow {
  color: #8d255b;
}

.online-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(420px, 1.06fr);
  gap: 58px;
  align-items: center;
}

.online-copy h2 {
  margin: 16px 0 0;
  font-size: clamp(2.2rem, 4.6vw, 4.5rem);
  line-height: 1.04;
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 26px 0 30px;
}

.check-grid span {
  min-height: 52px;
  display: flex;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.66);
  color: var(--dark-text);
  font-size: 0.9rem;
  font-weight: 900;
}

.check-grid span::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--violet));
}

.online-studio,
.dashboard-card,
.contact-panel {
  border: 1px solid rgba(17, 19, 42, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow);
}

.online-studio {
  overflow: hidden;
  transform-style: preserve-3d;
  transform: perspective(1100px) rotateY(-9deg) rotateX(4deg);
}

.studio-top {
  height: 56px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
  border-bottom: 1px solid var(--line-dark);
  background: rgba(9, 10, 24, 0.94);
}

.studio-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--pink);
}

.studio-top span:nth-child(2) {
  background: var(--sun);
}

.studio-top span:nth-child(3) {
  background: var(--cyan);
}

.studio-top b {
  margin-left: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
}

.studio-screen {
  min-height: 380px;
  display: grid;
  grid-template-columns: 0.74fr 1.26fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  padding: 16px;
  background:
    linear-gradient(135deg, rgba(122, 57, 255, 0.13), rgba(246, 55, 146, 0.08)),
    #f8f7ff;
}

.teacher-tile,
.student-tile,
.board {
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
}

.teacher-tile,
.student-tile {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  color: var(--dark-text);
  font-weight: 900;
}

.avatar {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #121325;
  background: linear-gradient(135deg, var(--sun), #ff8fc9);
  font-weight: 900;
}

.board {
  grid-row: span 2;
  padding: 28px;
  color: var(--dark-text);
  background:
    linear-gradient(rgba(17, 19, 42, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 19, 42, 0.055) 1px, transparent 1px),
    rgba(255, 255, 255, 0.84);
  background-size: 34px 34px;
}

.board strong {
  display: block;
  margin-bottom: 24px;
}

.equation {
  width: max-content;
  margin-bottom: 10px;
  padding: 10px 14px;
  border-radius: 8px;
  background: rgba(122, 57, 255, 0.1);
  color: #2d235e;
  font-family: var(--font-display);
  font-weight: 800;
}

.equation.muted {
  background: rgba(246, 55, 146, 0.1);
  color: #71214d;
}

.solution-line {
  width: 84%;
  height: 12px;
  margin-top: 30px;
  border-radius: 999px;
  background: rgba(17, 19, 42, 0.12);
}

.solution-line.short {
  width: 58%;
  margin-top: 12px;
}

.studio-footer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-dark);
}

.studio-footer span {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  background: #fff;
  color: var(--dark-muted);
  text-align: center;
  font-size: 0.82rem;
  font-weight: 900;
}

.dashboard-card {
  padding: 20px;
  color: var(--dark-text);
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line-dark);
}

.dashboard-header div {
  display: grid;
  gap: 4px;
}

.dashboard-header strong {
  font-family: var(--font-display);
}

.dashboard-header span {
  color: var(--dark-muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.dashboard-header a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 8px;
  color: #121325;
  background: linear-gradient(135deg, var(--sun), #ff8fc9);
  font-weight: 900;
}

.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 18px 0;
}

.demo-login {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 18px;
}

.demo-login div {
  padding: 14px;
  border: 1px solid rgba(246, 55, 146, 0.16);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 209, 102, 0.18), rgba(246, 55, 146, 0.08));
}

.demo-login span {
  display: block;
  color: var(--dark-muted);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.demo-login strong {
  display: block;
  margin-top: 6px;
  color: var(--dark-text);
  font-family: var(--font-display);
  font-size: 1.2rem;
}

.dashboard-stats div {
  padding: 18px 14px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: #fff;
}

.dashboard-stats strong {
  color: var(--dark-text);
}

.dashboard-stats span {
  color: var(--dark-muted);
}

.dashboard-feed {
  display: grid;
  gap: 10px;
}

.dashboard-feed span {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0 14px;
  border-radius: 8px;
  background: rgba(17, 19, 42, 0.045);
  color: var(--dark-muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.dashboard-feed b {
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--violet));
}

#takip {
  color: var(--dark-text);
  background: var(--paper);
}

.process-list {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.process-list div {
  min-height: 54px;
  display: flex;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--dark-muted);
  font-weight: 900;
}

.process-list span {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  display: grid;
  place-items: center;
  margin-right: 12px;
  border-radius: 8px;
  color: #121325;
  background: linear-gradient(135deg, var(--sun), #ff8fc9);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.proof-item {
  min-height: 230px;
  border-color: var(--line-dark);
  background: rgba(255, 255, 255, 0.72);
  color: var(--dark-text);
}

.proof-item p {
  color: var(--dark-muted);
}

.contact-section {
  color: var(--dark-text);
  background:
    linear-gradient(135deg, rgba(122, 57, 255, 0.14), transparent 42%),
    #f8f7ff;
}

.contact-panel {
  display: grid;
  gap: 10px;
  padding: 12px;
}

.contact-action {
  min-height: 96px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 20px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: #fff;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.contact-action:hover {
  transform: translateY(-2px);
  border-color: rgba(246, 55, 146, 0.28);
}

.contact-action span {
  color: var(--dark-muted);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-action strong {
  color: var(--dark-text);
  font-size: 1.08rem;
}

.whatsapp-action {
  color: #fff;
  background: linear-gradient(135deg, #1fae62, #25d366);
}

.demo-action {
  color: #121325;
  background: linear-gradient(135deg, var(--sun), #ff8fc9 55%, #bda4ff);
}

.whatsapp-action span,
.whatsapp-action strong,
.demo-action span,
.demo-action strong {
  color: #fff;
}

.demo-action span,
.demo-action strong {
  color: #121325;
}

.whatsapp-float {
  position: fixed;
  z-index: 55;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #22c55e, #0f9f6e);
  box-shadow: 0 16px 36px rgba(34, 197, 94, 0.34);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 20px 44px rgba(34, 197, 94, 0.46);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px max(20px, calc((100vw - 1160px) / 2));
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #070813;
  color: rgba(248, 247, 255, 0.64);
}

.site-footer div {
  display: flex;
  align-items: center;
  gap: 14px;
}

.site-footer img {
  width: 78px;
  height: auto;
}

.site-footer span,
.site-footer p {
  margin: 0;
  font-size: 0.86rem;
  font-weight: 800;
}

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

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

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

  .hero-scroll {
    min-height: auto;
  }

  .hero-sticky {
    position: relative;
  }
}

@media (max-width: 1060px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero-scroll {
    min-height: auto;
    margin-top: 0;
  }

  .hero-sticky {
    position: relative;
    height: auto;
    min-height: auto;
    padding: 64px 0 80px;
  }

  .hero-grid,
  .split,
  .reverse,
  .online-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 460px;
  }

  .panel-showcase {
    max-width: 560px;
  }

  .service-grid,
  .branches-grid,
  .proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .branch-feature {
    grid-row: auto;
    grid-column: span 2;
    min-height: 260px;
  }

  .demo-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  :root {
    --container: min(100% - 28px, 1160px);
  }

  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    height: 62px;
    margin-top: 10px;
    padding: 8px 8px 8px 12px;
  }

  .brand {
    min-width: auto;
  }

  .brand img {
    width: 86px;
    max-height: 48px;
  }

  .login-link {
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.84rem;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .hero-sticky {
    padding-top: 52px;
  }

  .hero-grid {
    gap: 26px;
  }

  h1 {
    font-size: clamp(2.8rem, 15vw, 4.3rem);
  }

  .hero-visual {
    min-height: 360px;
  }

  .panel-showcase {
    width: 100%;
  }

  .showcase-body {
    padding: 18px;
  }

  .showcase-metrics,
  .showcase-feed {
    grid-template-columns: 1fr;
  }

  .showcase-heading {
    align-items: flex-start;
  }

  .showcase-heading img {
    width: 68px;
  }

  .section {
    padding: 78px 0;
  }

  .section-copy h2,
  .section-heading h2,
  .contact-copy h2,
  .online-copy h2 {
    font-size: clamp(2rem, 10vw, 3.2rem);
  }

  .service-grid,
  .branches-grid,
  .proof-grid,
  .check-grid,
  .dashboard-stats,
  .studio-footer {
    grid-template-columns: 1fr;
  }

  .branch-feature {
    grid-column: auto;
    min-height: 230px;
  }

  .service-card,
  .proof-item {
    min-height: auto;
  }

  .online-studio {
    transform: none;
  }

  .studio-screen {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .board {
    grid-row: auto;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 96px;
  }
}
