:root {
  --bg: #fafafa;
  --bg-off: #f3f2ef;
  --bg-dark: #0f0f0f;
  --bg-dark-2: #1a1a1a;

  --ink: #0f0f0f;
  --ink-2: #3a3a3a;
  --ink-3: #6b6b6b;
  --ink-4: #a0a0a0;

  --emerald: #007a5e;
  --emerald-lt: #009e7a;
  --emerald-dim: rgba(0, 122, 94, 0.08);
  --emerald-mid: rgba(0, 122, 94, 0.18);

  --gold: #b08d57;
  --gold-dim: rgba(176, 141, 87, 0.12);

  --border: #e2e0db;
  --border-dark: #d0cec9;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;

  --shadow-sm: 0 1px 4px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 24px 80px rgba(0, 0, 0, 0.12);

  --header-h: 72px;
  --transition: 0.22s ease;

  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Rajdhani", sans-serif;

  --container-max: 1140px;
  --container-pad: clamp(20px, 5vw, 48px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img {
  height: 52px;
  width: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
ul,
ol {
  list-style: none;
}
button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}
input,
textarea,
select {
  font-family: inherit;
}

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

.section {
  padding: clamp(72px, 10vw, 120px) 0;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: none;
}

.section-rule {
  width: 48px;
  height: 2px;
  background: var(--emerald);
  margin: 0 auto 20px;
  display: block;
}
.section-rule--left {
  margin-left: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all var(--transition);
  white-space: nowrap;
  position: relative;
}

.btn-primary {
  background: var(--emerald);
  color: #fff;
  border: 2px solid var(--emerald);
}
.btn-primary:hover {
  background: var(--emerald-lt);
  border-color: var(--emerald-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 122, 94, 0.25);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--border-dark);
}
.btn-outline:hover {
  border-color: var(--emerald);
  color: var(--emerald);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--ink);
  color: #fff;
  border: 2px solid var(--ink);
}
.btn-dark:hover {
  background: var(--ink-2);
  border-color: var(--ink-2);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 0.92rem;
}
.btn-sm {
  padding: 9px 18px;
  font-size: 0.78rem;
}

.btn.sent {
  background: var(--emerald);
  border-color: var(--emerald);
  color: #fff;
}

#age-gate {
  position: fixed;
  inset: 0;
  z-index: 10000;
  align-items: center;
  justify-content: center;
  background: rgba(250, 250, 250, 0.97);
  backdrop-filter: blur(6px);
}

.age-gate-box {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(36px, 5vw, 60px);
  max-width: 460px;
  width: 90%;
  text-align: center;
  box-shadow: var(--shadow-xl);
}

.age-gate-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--bg-dark);
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 22px;
  letter-spacing: 0.04em;
}

.age-gate-box h2 {
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--ink);
  margin-bottom: 12px;
  font-weight: 700;
}

.age-gate-box p {
  color: var(--ink-3);
  margin-bottom: 28px;
  font-size: 1rem;
}

.age-gate-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.age-gate-note {
  margin-top: 18px !important;
  font-size: 0.78rem;
  color: var(--ink-4);
  margin-bottom: 0 !important;
}

#cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9000;
  width: min(660px, calc(100vw - 32px));
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.cookie-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  flex-wrap: wrap;
}

.cookie-icon {
  font-size: 1.2rem;
  color: var(--emerald);
  flex-shrink: 0;
}

.cookie-inner p {
  flex: 1;
  font-size: 0.88rem;
  color: var(--ink-3);
  min-width: 160px;
}
.cookie-inner a {
  color: var(--emerald);
  text-decoration: underline;
}
.cookie-btns {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(250, 250, 250, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition:
    border-color var(--transition),
    box-shadow var(--transition),
    background var(--transition);
}

#header.scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
  background: rgba(250, 250, 250, 0.98);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.01em;
  transition: color var(--transition);
}

.logo-dot {
  color: var(--emerald);
}
.logo:hover .logo-text {
  color: var(--emerald);
}

#nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-link {
  display: block;
  padding: 8px 14px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--ink-3);
  border-radius: var(--radius-sm);
  transition: color var(--transition);
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 3px;
  left: 14px;
  right: 14px;
  height: 1px;
  background: var(--emerald);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.nav-link:hover {
  color: var(--ink);
}
.nav-link:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  margin-left: 12px;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-dark);
  color: var(--ink);
  font-size: 1rem;
  transition: all var(--transition);
  flex-shrink: 0;
}
.menu-toggle:hover {
  border-color: var(--emerald);
  color: var(--emerald);
}

.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  background: var(--bg-off);
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
  pointer-events: none;
}

.hero-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--border);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  padding-top: clamp(48px, 8vw, 88px);
  padding-bottom: clamp(48px, 8vw, 88px);
}

.hero-content {
  max-width: 560px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--emerald);
  margin-bottom: 20px;
}

.hero-eyebrow::before {
  content: "";
  display: block;
  width: 28px;
  height: 1px;
  background: var(--emerald);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 22px;
  letter-spacing: -0.01em;
}

.hero-title em {
  font-style: italic;
  color: var(--emerald);
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--ink-3);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-stats {
  display: flex;
  gap: 0;
  margin-bottom: 40px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
}

.hero-stat {
  flex: 1;
  text-align: center;
  padding: 0 10px;
  border-right: 1px solid var(--border);
}
.hero-stat:last-child {
  border-right: none;
}
.hero-stat:first-child {
  padding-left: 0;
  text-align: left;
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-4);
  margin-top: 4px;
}

.hero-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  width: 100%;
  max-width: 340px;
  box-shadow: var(--shadow-xl);
  position: relative;
}

.hero-card-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-4);
  margin-bottom: 6px;
}

.hero-card-rank {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.hcr-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.hcr-logo img {
  max-height: 36px;
  max-width: 120px;
  object-fit: contain;
}

.hcr-logo-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ink);
}

.hero-card-divider {
  height: 1px;
  background: var(--border);
  margin: 18px 0;
}

.hero-card-bonus-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-4);
  margin-bottom: 6px;
}

.hero-card-bonus-value {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--emerald);
  margin-bottom: 4px;
}

.hero-card-bonus-extra {
  font-size: 0.85rem;
  color: var(--ink-3);
  margin-bottom: 20px;
}

.hero-card-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
}

.stars {
  display: flex;
  gap: 2px;
}
.stars i {
  color: #daa520;
  font-size: 0.82rem;
}

.rating-val {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--ink);
}

.rating-cnt {
  font-size: 0.78rem;
  color: var(--ink-4);
}

.hero-card-btn {
  width: 100%;
  justify-content: center;
}

.hero-card-note {
  margin-top: 10px;
  font-size: 0.7rem;
  color: var(--ink-4);
  text-align: center;
}

.hero-visual-accent {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  border: 1px solid var(--emerald-mid);
  border-radius: var(--radius-lg);
  pointer-events: none;
  transform: rotate(8deg);
}

.hero-visual-accent-2 {
  position: absolute;
  bottom: -16px;
  left: -16px;
  width: 80px;
  height: 80px;
  background: var(--emerald-dim);
  border-radius: 50%;
  pointer-events: none;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-4);
  animation: gentle-bounce 2.5s ease-in-out infinite;
}

@keyframes gentle-bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(6px);
  }
}

.section-header {
  margin-bottom: clamp(44px, 6vw, 68px);
}
.section-header--center {
  text-align: center;
}
.section-header--center .section-rule {
  margin: 0 auto 18px;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--emerald);
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.12;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--ink-3);
  line-height: 1.75;
  max-width: 580px;
}

.section-header--center .section-subtitle {
  margin: 0 auto;
}

.top-kazina-section {
  background: var(--bg);
}

.operator-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 20px;
  transition:
    box-shadow var(--transition),
    transform var(--transition);
  overflow: hidden;
  position: relative;
}

.operator-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.operator-card--gold::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), #e8c97a);
}
.operator-card--silver::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--emerald);
}
.operator-card--bronze::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--ink-3);
}

.op-rank-tag {
  position: absolute;
  top: 16px;
  left: 20px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
}

.operator-card--gold .op-rank-tag {
  background: var(--gold-dim);
  color: var(--gold);
  border: 1px solid rgba(176, 141, 87, 0.3);
}
.operator-card--silver .op-rank-tag {
  background: var(--emerald-dim);
  color: var(--emerald);
  border: 1px solid var(--emerald-mid);
}
.operator-card--bronze .op-rank-tag {
  background: rgba(107, 107, 107, 0.08);
  color: var(--ink-3);
  border: 1px solid var(--border);
}

.op-card-inner {
  display: grid;
  grid-template-columns: 150px 1fr auto;
  gap: 28px;
  padding: 32px 32px 28px;
  align-items: start;
  padding-top: 48px;
}

.op-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 4px;
}

.op-logo {
  max-height: 48px;
  max-width: 130px;
  object-fit: contain;
}

.op-logo-fallback {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  background: var(--bg-off);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

.op-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}

.op-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.rating-value {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ink);
}
.rating-count {
  font-size: 0.78rem;
  color: var(--ink-4);
}

.op-bonus-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--emerald-dim);
  border: 1px solid var(--emerald-mid);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--emerald);
  margin-bottom: 18px;
}

.op-details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 6px 20px;
  margin-bottom: 16px;
}

.op-detail {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.87rem;
  color: var(--ink-3);
}
.op-detail i {
  color: var(--emerald);
  margin-top: 2px;
  flex-shrink: 0;
  width: 14px;
}
.op-detail a {
  color: var(--emerald);
  transition: color var(--transition);
}
.op-detail a:hover {
  color: var(--ink);
}

.op-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.op-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  background: var(--bg-off);
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--ink-3);
}

.op-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  min-width: 170px;
}

.op-btn {
  white-space: nowrap;
}
.op-cta-note {
  font-size: 0.68rem;
  color: var(--ink-4);
  text-align: right;
}

.op-rating-bars {
  margin-bottom: 16px;
  display: grid;
  gap: 7px;
}

.rating-bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
}

.rating-bar-label {
  width: 80px;
  color: var(--ink-3);
  flex-shrink: 0;
}

.rating-bar-track {
  flex: 1;
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
}

.rating-bar-fill {
  height: 100%;
  background: var(--emerald);
  border-radius: 2px;
  width: 0;
  transition: width 1s ease;
}

.rating-bar-val {
  width: 28px;
  text-align: right;
  font-weight: 700;
  color: var(--ink);
  font-size: 0.8rem;
}

.operators-disclaimer {
  text-align: center;
  font-size: 0.8rem;
  color: var(--ink-4);
  margin-top: 14px;
  padding: 12px 20px;
  border-top: 1px solid var(--border);
}

.o-nama-section {
  background: var(--bg-off);
}

.o-nama-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  margin-bottom: clamp(44px, 6vw, 64px);
  align-items: start;
}

.o-nama-text p {
  font-size: 1rem;
  color: var(--ink-2);
  margin-bottom: 16px;
  line-height: 1.8;
}
.o-nama-text strong {
  color: var(--ink);
}
.o-nama-text em {
  color: var(--emerald);
  font-style: normal;
  font-weight: 600;
}

.point-item {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.point-item:last-child {
  border-bottom: none;
}

.point-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--border-dark);
  line-height: 1;
  flex-shrink: 0;
  width: 40px;
  padding-top: 2px;
}

.point-content h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 5px;
}
.point-content p {
  font-size: 0.9rem;
  color: var(--ink-3);
  line-height: 1.65;
}

.stat-cards-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.stat-card {
  background: #fff;
  padding: 28px 24px;
  text-align: center;
  transition: background var(--transition);
}
.stat-card:hover {
  background: var(--emerald-dim);
}

.stat-card-icon {
  font-size: 1.2rem;
  color: var(--emerald);
  margin-bottom: 10px;
}
.stat-card-value {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}
.stat-card-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-4);
}

.servisi-section {
  background: #fff;
}

.servisi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.servis-card {
  background: #fff;
  padding: 32px 28px;
  transition: background var(--transition);
  position: relative;
}

.servis-card:hover {
  background: var(--bg-off);
}

.servis-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 28px;
  right: 28px;
  height: 2px;
  background: var(--emerald);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.servis-card:hover::after {
  transform: scaleX(1);
}

.servis-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--border);
  line-height: 1;
  margin-bottom: 16px;
  transition: color var(--transition);
}
.servis-card:hover .servis-num {
  color: var(--emerald-mid);
}

.servis-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}

.servis-card p {
  font-size: 0.9rem;
  color: var(--ink-3);
  line-height: 1.65;
  margin-bottom: 14px;
}

.servis-link {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--emerald);
  display: flex;
  align-items: center;
  gap: 5px;
  transition: gap var(--transition);
}
.servis-card:hover .servis-link {
  gap: 8px;
}

.kako-section {
  background: var(--bg-off);
}

.koraci-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.koraci-grid::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: var(--border-dark);
  z-index: 0;
}

.korak-item {
  position: relative;
  z-index: 1;
  padding: 0 20px;
  text-align: center;
}

.korak-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--border-dark);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink-3);
  margin: 0 auto 20px;
  transition: all var(--transition);
}

.korak-item:hover .korak-dot {
  background: var(--emerald);
  border-color: var(--emerald);
  color: #fff;
}

.korak-content h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}

.korak-content p {
  font-size: 0.88rem;
  color: var(--ink-3);
  line-height: 1.65;
}

.kontakt-section {
  background: #fff;
}

.kontakt-wrap {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: clamp(32px, 5vw, 60px);
  align-items: start;
}

.contact-form {
  background: var(--bg-off);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 40px);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.form-group input,
.form-group textarea,
.form-group select {
  background: #fff;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  color: var(--ink);
  font-size: 0.95rem;
  outline: none;
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
  width: 100%;
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--emerald);
  box-shadow: 0 0 0 3px rgba(0, 122, 94, 0.08);
}

.form-group input.error,
.form-group textarea.error {
  border-color: #c0392b;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23007a5e' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--ink-4);
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.form-note {
  font-size: 0.78rem;
  color: var(--ink-4);
}
.form-note i {
  color: var(--emerald);
  margin-right: 4px;
}

.kontakt-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.kontakt-info-card {
  background: var(--bg-off);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px;
  transition: border-color var(--transition);
}

.kontakt-info-card:hover {
  border-color: var(--emerald);
}

.kontakt-info-card > i {
  font-size: 1rem;
  color: var(--emerald);
  margin-bottom: 7px;
  display: block;
}

.kontakt-info-card h4 {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-4);
  margin-bottom: 3px;
}

.kontakt-info-card p,
.kontakt-info-card a {
  font-size: 0.9rem;
  color: var(--ink-2);
  transition: color var(--transition);
}
.kontakt-info-card a:hover {
  color: var(--emerald);
}

.faq-section {
  background: var(--bg-off);
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 0;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  gap: 16px;
  transition: color var(--transition);
}
.faq-question:hover {
  color: var(--emerald);
}

.faq-icon {
  color: var(--emerald);
  flex-shrink: 0;
  font-size: 0.8rem;
  transition: transform var(--transition);
}
.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-item.active .faq-answer {
  max-height: 400px;
}

.faq-answer p {
  padding: 0 0 20px;
  font-size: 0.95rem;
  color: var(--ink-3);
  line-height: 1.75;
}
.faq-answer a {
  color: var(--emerald);
  text-decoration: underline;
}

#footer {
  background: var(--bg-dark);
  color: rgba(255, 255, 255, 0.75);
}

.footer-top-bar {
  padding: clamp(44px, 6vw, 68px) 0 clamp(36px, 5vw, 52px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding-bottom: 32px;
  margin-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  display: block;
  margin-bottom: 4px;
}

.footer-brand-sub {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.badge-18 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #c0000d;
  font-family: var(--font-display);
  font-size: 1rem;
  color: #fff;
  flex-shrink: 0;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 3vw, 36px);
}

.footer-col-heading {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 12px;
}

.footer-col p {
  font-size: 0.84rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.5);
}
.footer-col strong {
  color: rgba(255, 255, 255, 0.7);
}
.footer-col a {
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition);
}
.footer-col a:hover {
  color: #fff;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-col li a {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.55);
  transition:
    color var(--transition),
    gap var(--transition);
}
.footer-col li a:hover {
  color: #fff;
  gap: 10px;
}
.footer-col li a i {
  font-size: 0.55rem;
  color: var(--emerald);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 22px 0;
}

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 5px;
  text-align: center;
}

.footer-disclaimer,
.footer-disclaimer-en {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1.5;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

#back-to-top {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 500;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: var(--ink);
  border: none;
  color: #fff;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
  box-shadow: var(--shadow-md);
}
#back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  display: flex;
}
#back-to-top:hover {
  background: var(--emerald);
  transform: translateY(-3px);
}

@media (max-width: 1024px) {
  .op-card-inner {
    grid-template-columns: 120px 1fr;
    padding-top: 48px;
  }
  .op-cta {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    border-top: 1px solid var(--border);
    padding-top: 16px;
    min-width: auto;
  }
  .op-btn {
    width: auto;
  }
  .koraci-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
  }
  .koraci-grid::before {
    display: none;
  }
  .stat-cards-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .servisi-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-cols {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --header-h: 62px;
  }

  .menu-toggle {
    display: flex;
  }

  #nav-menu {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: rgba(250, 250, 250, 0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    padding: 16px var(--container-pad) 24px;
    transform: translateY(-110%);
    opacity: 0;
    transition:
      transform 0.3s ease,
      opacity 0.3s ease;
    pointer-events: none;
  }
  #nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin-bottom: 12px;
  }
  .nav-link {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
  }
  .nav-link::after {
    display: none;
  }
  .nav-cta {
    margin: 0;
    width: 100%;
    justify-content: center;
  }

  .hero-section::before {
    display: none;
  }
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    display: none;
  }
  .hero-stats {
    flex-direction: row;
  }
  .hero-cta-row {
    flex-direction: column;
  }
  .hero-cta-row .btn {
    width: 100%;
    justify-content: center;
  }

  .o-nama-grid {
    grid-template-columns: 1fr;
  }

  .op-card-inner {
    grid-template-columns: 1fr;
    padding: 20px;
    padding-top: 44px;
  }
  .op-logo-wrap {
    justify-content: flex-start;
  }
  .op-cta {
    flex-direction: column;
    align-items: flex-start;
  }
  .op-btn {
    width: 100%;
    justify-content: center;
  }
  .op-details-grid {
    grid-template-columns: 1fr;
  }

  .servisi-grid {
    grid-template-columns: 1fr;
  }
  .koraci-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .kontakt-wrap {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .form-footer {
    flex-direction: column;
    align-items: flex-start;
  }
  .form-footer .btn {
    width: 100%;
    justify-content: center;
  }

  .footer-cols {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-top-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .age-gate-btns {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .hero-stats {
    flex-direction: column;
    gap: 14px;
    padding: 16px 0;
  }
  .hero-stat {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding-bottom: 14px;
    text-align: left;
    padding-left: 0;
  }
  .hero-stat:last-child {
    border-bottom: none;
  }
  .stat-cards-row {
    grid-template-columns: repeat(2, 1fr);
  }
}
