/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0A0A0A;
  --bg2: #111111;
  --bg3: #161616;
  --border: #222222;
  --gold: #C8A96E;
  --gold-light: #DFC28B;
  --text: #FFFFFF;
  --text2: #999999;
  --text3: #555555;
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s ease;
  --font: 'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.gold { color: var(--gold); }

/* ===== INTRO ===== */
.intro {
  position: fixed;
  inset: 0;
  background: #050505;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.intro.hide {
  animation: introExit 0.9s cubic-bezier(0.7, 0, 0.3, 1) 0.2s both;
}
@keyframes introExit {
  0%   { transform: translateY(0); opacity: 1; }
  60%  { transform: translateY(-8px); opacity: 1; }
  100% { transform: translateY(-100%); opacity: 1; }
}

.intro__content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.intro__logo {
  display: flex;
  align-items: baseline;
  gap: 2px;
  font-size: clamp(3.5rem, 10vw, 7rem);
  font-weight: 800;
  letter-spacing: -4px;
  line-height: 1;
}
.intro__letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px);
  animation: letterUp 0.6s cubic-bezier(0.2, 1, 0.4, 1) both;
}
.intro__letter:nth-child(1) { animation-delay: 0.1s; }
.intro__letter:nth-child(2) { animation-delay: 0.22s; }
.intro__letter:nth-child(3) { animation-delay: 0.34s; }
.intro__dot {
  display: inline-block;
  color: var(--gold);
  opacity: 0;
  transform: translateY(40px);
  animation: letterUp 0.6s cubic-bezier(0.2, 1, 0.4, 1) 0.46s both;
}
@keyframes letterUp {
  to { opacity: 1; transform: translateY(0); }
}

.intro__line {
  width: 160px;
  height: 1px;
  background: rgba(255,255,255,0.08);
  border-radius: 1px;
  overflow: hidden;
  opacity: 0;
  animation: fadeInQuick 0.3s ease 0.7s both;
}
.intro__line-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: lineSweep 1s ease 0.75s both;
}
@keyframes lineSweep {
  0%   { width: 0; margin-left: 0; }
  50%  { width: 100%; margin-left: 0; }
  100% { width: 0; margin-left: 100%; }
}

.intro__sub {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text3);
  opacity: 0;
  animation: fadeInQuick 0.5s ease 0.8s both;
}
@keyframes fadeInQuick {
  to { opacity: 1; }
}

/* oldal el van rejtve amíg az intro fut */
body.intro-active {
  overflow: hidden;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--font);
  cursor: pointer;
  transition: all var(--transition);
  border: 1.5px solid transparent;
  white-space: nowrap;
}
.btn--primary {
  background: var(--gold);
  color: #0A0A0A;
  border-color: var(--gold);
}
.btn--primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200, 169, 110, 0.3);
}
.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.btn--full { width: 100%; }

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: all var(--transition);
}
.nav.scrolled {
  background: rgba(10, 10, 10, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo { font-size: 1.5rem; font-weight: 800; letter-spacing: -0.5px; }
.nav__logo span { color: var(--gold); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text2);
  transition: color var(--transition);
}
.nav__links a:hover { color: var(--text); }
.nav__cta {
  background: var(--gold) !important;
  color: #0A0A0A !important;
  padding: 10px 20px;
  border-radius: 7px;
  font-weight: 600 !important;
}
.nav__cta:hover { background: var(--gold-light) !important; color: #0A0A0A !important; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 200;
}
.nav__hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}
.hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  opacity: 0.5;
}
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.1;
}
.hero__glow--1 {
  width: 700px; height: 700px;
  background: var(--gold);
  top: -200px; right: -150px;
}
.hero__glow--2 {
  width: 500px; height: 500px;
  background: #5B3FFF;
  bottom: -150px; left: -150px;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200, 169, 110, 0.08);
  border: 1px solid rgba(200, 169, 110, 0.2);
  color: var(--gold);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  margin-bottom: 24px;
}
.hero__title {
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -2px;
  margin-bottom: 20px;
}
.hero__sub {
  font-size: 1.05rem;
  color: var(--text2);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero__stats {
  display: flex;
  align-items: center;
  gap: 32px;
}
.hero__stat { text-align: left; }
.hero__stat-num {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -1px;
}
.hero__stat-plus { font-size: 1.5rem; font-weight: 800; }
.hero__stat-label {
  display: block;
  font-size: 0.78rem;
  color: var(--text3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 2px;
}
.hero__stat-divider {
  width: 1px; height: 36px;
  background: var(--border);
}

.hero__scroll {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
}
.hero__scroll span {
  display: block;
  width: 20px; height: 32px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  position: relative;
}
.hero__scroll span::after {
  content: '';
  position: absolute;
  top: 6px; left: 50%;
  transform: translateX(-50%);
  width: 3px; height: 6px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollDot 1.5s ease infinite;
}
@keyframes scrollDot {
  0% { opacity: 1; top: 6px; }
  100% { opacity: 0; top: 18px; }
}

/* ===== DASHBOARD ===== */
.hero__right {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero__dashboard {
  position: relative;
  width: 100%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dash-card {
  background: rgba(20, 20, 20, 0.92);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 18px 20px;
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.dash-card--main { /* no extra styles needed */ }

.dash-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.dash-card__label {
  font-size: 0.72rem;
  color: var(--text2);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.dash-card__value {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 12px;
}
.dash-card__value--sm {
  font-size: 1.4rem;
  margin-bottom: 0;
}
.dash-card__row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.dash-card__emoji { font-size: 1.3rem; line-height: 1; }

.dash-card__bar {
  height: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
  overflow: hidden;
}
.dash-card__bar-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  animation: barGrow 1.5s ease 0.8s both;
}
@keyframes barGrow { to { width: 78%; } }

.dash-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 52px;
  margin-top: 8px;
}
.dash-bar {
  flex: 1;
  height: var(--h);
  background: rgba(200, 169, 110, 0.18);
  border-radius: 3px 3px 0 0;
}
.dash-bar--active { background: var(--gold); }

.dash-notification {
  align-self: flex-start;
  background: rgba(20,20,20,0.96);
  border: 1px solid rgba(200,169,110,0.25);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 0.78rem;
  color: var(--text2);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}
.dash-notif-dot {
  width: 7px; height: 7px;
  background: #4CAF50;
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

/* Float animations */
.float-1 { animation: float1 5s ease-in-out infinite; }
.float-2 { animation: float2 6s ease-in-out infinite; }
.float-3 { animation: float3 4.5s ease-in-out infinite; }

@keyframes float1 {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}
@keyframes float2 {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-7px); }
}
@keyframes float3 {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-13px); }
}

/* ===== SECTIONS ===== */
.section { padding: 100px 0; }
.section--dark { background: var(--bg2); }

.section__header {
  text-align: center;
  margin-bottom: 64px;
}
.section__label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 12px;
}
.section__title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.2;
  margin-bottom: 16px;
}
.section__desc {
  color: var(--text2);
  max-width: 500px;
  margin: 0 auto;
  font-size: 1.02rem;
}

/* ===== SERVICES ===== */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: all var(--transition);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  border-color: rgba(200, 169, 110, 0.35);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}
.service-card--featured {
  border-color: rgba(200,169,110,0.3);
  background: linear-gradient(135deg, #161616 0%, #1a1608 100%);
}
.service-card__top-badge {
  display: inline-block;
  background: var(--gold);
  color: #0A0A0A;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.service-card__icon {
  width: 46px; height: 46px;
  color: var(--gold);
  margin-bottom: 18px;
}
.service-card__icon svg { width: 100%; height: 100%; }
.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.service-card p { color: var(--text2); font-size: 0.9rem; line-height: 1.65; margin-bottom: 18px; }

.service-card__more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
  cursor: pointer;
  transition: gap var(--transition);
  margin-top: auto;
}
.service-card__more svg { width: 14px; height: 14px; transition: transform var(--transition); }
.service-card:hover .service-card__more { gap: 10px; }
.service-card:hover .service-card__more svg { transform: translateX(3px); }

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(6px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.modal {
  background: #141414;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 48px 44px;
  max-width: 560px;
  width: 100%;
  position: relative;
  transform: translateY(24px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.2,1,0.4,1);
  max-height: 90vh;
  overflow-y: auto;
}
.modal-overlay.open .modal {
  transform: translateY(0) scale(1);
}
.modal__close {
  position: absolute;
  top: 20px; right: 20px;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--text2);
  transition: all var(--transition);
}
.modal__close:hover { background: rgba(255,255,255,0.1); color: var(--text); }
.modal__close svg { width: 16px; height: 16px; }

.modal__icon {
  width: 56px; height: 56px;
  color: var(--gold);
  margin-bottom: 20px;
}
.modal__icon svg { width: 100%; height: 100%; }
.modal__title {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}
.modal__desc {
  color: var(--text2);
  line-height: 1.75;
  font-size: 0.97rem;
  margin-bottom: 24px;
}
.modal__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.modal__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text2);
}
.modal__list li::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.65rem;
  margin-top: 4px;
  flex-shrink: 0;
}
.modal__cta { margin-top: 4px; }

@media (max-width: 600px) {
  .modal { padding: 36px 24px; }
}

/* ===== PROCESS ===== */
.process__steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.process__step {
  flex: 1;
  max-width: 300px;
  text-align: center;
  padding: 0 24px;
}
.process__num {
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(200, 169, 110, 0.12);
  line-height: 1;
  margin-bottom: 18px;
  letter-spacing: -2px;
}
.process__content h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.process__content p { color: var(--text2); font-size: 0.9rem; line-height: 1.65; }
.process__connector {
  width: 80px; height: 1px;
  background: linear-gradient(90deg, var(--border), var(--gold), var(--border));
  margin-top: 26px;
  flex-shrink: 0;
}

/* ===== PRICING ===== */
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
.pricing-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  transition: all var(--transition);
}
.pricing-card:hover { transform: translateY(-4px); }
.pricing-card--featured {
  border-color: var(--gold);
  background: linear-gradient(135deg, #161616 0%, #1a1608 100%);
  transform: scale(1.03);
}
.pricing-card--featured:hover { transform: scale(1.03) translateY(-4px); }
.pricing-card__badge {
  display: inline-block;
  background: var(--gold);
  color: #0A0A0A;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.pricing-card__name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text2);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.pricing-card__amount { font-size: 2rem; font-weight: 800; letter-spacing: -1px; }
.pricing-card__period { font-size: 0.88rem; color: var(--text2); }
.pricing-card__for { font-size: 0.82rem; color: var(--text3); margin: 6px 0 24px; }
.pricing-card__features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.pricing-card__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text2);
}
.check { color: var(--gold); font-weight: 700; }

/* ===== CLIENTS MARQUEE ===== */
.clients__marquee {
  overflow: hidden;
  margin-bottom: 56px;
  mask-image: linear-gradient(90deg, transparent, black 15%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 15%, black 85%, transparent);
}
.clients__track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: marqueeScroll 18s linear infinite;
}
.clients__marquee:hover .clients__track {
  animation-play-state: paused;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-33.333%); }
}
.clients__item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 12px 24px 12px 16px;
  white-space: nowrap;
  transition: border-color 0.3s;
}
.clients__item:hover {
  border-color: rgba(200,169,110,0.3);
}
.clients__item img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  object-fit: contain;
  flex-shrink: 0;
}
.clients__logo {
  width: 36px !important;
  height: 36px !important;
  border-radius: 8px !important;
  object-fit: contain !important;
  background: rgba(255,255,255,0.04);
}
.clients__initial {
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, var(--gold), #8B6914);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  color: #0A0A0A;
  flex-shrink: 0;
}
.clients__item span {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text2);
  letter-spacing: -0.2px;
}

/* ===== PROJECTS ===== */
.projects__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.project-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.project-card:hover {
  border-color: rgba(200,169,110,0.3);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}
.project-card__top { position: relative; }

.project-card__browser {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #1a1a1a;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
}
.project-card__dots { display: flex; gap: 5px; }
.project-card__dots span {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
}
.project-card__dots span:nth-child(1) { background: #FF5F57; }
.project-card__dots span:nth-child(2) { background: #FFBD2E; }
.project-card__dots span:nth-child(3) { background: #28CA41; }
.project-card__url {
  font-size: 0.72rem;
  color: var(--text3);
  font-family: monospace;
  flex: 1;
  text-align: center;
}

.project-card__screen {
  height: 200px;
  overflow: hidden;
  position: relative;
  background: #111;
}
.project-card__screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.5s ease;
}
.project-card:hover .project-card__screen img {
  transform: scale(1.04);
}


.project-card__body { padding: 22px 24px 26px; }
.project-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 12px;
}
.project-card__tags span {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gold);
  background: rgba(200,169,110,0.08);
  border: 1px solid rgba(200,169,110,0.15);
  padding: 3px 10px;
  border-radius: 100px;
}
.project-card__body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.project-card__body p {
  font-size: 0.88rem;
  color: var(--text2);
  line-height: 1.65;
  margin-bottom: 18px;
}
.project-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gold);
  transition: gap var(--transition);
}
.project-card__link:hover { gap: 10px; }
.project-card__link svg { width: 16px; height: 16px; }

@media (max-width: 1024px) {
  .projects__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}
@media (max-width: 768px) {
  .projects__grid { max-width: 100%; }
}

/* ===== FAQ CHAT ===== */
.chat__wrapper {
  max-width: 680px;
  margin: 0 auto;
}
.chat__window {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
  display: flex;
  flex-direction: column;
  height: 500px;
}
.chat__header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
}
.chat__avatar {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--gold), #8B6914);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  color: #0A0A0A;
  position: relative;
  flex-shrink: 0;
}
.chat__avatar-dot {
  position: absolute;
  bottom: 1px; right: 1px;
  width: 10px; height: 10px;
  background: #4CAF50;
  border-radius: 50%;
  border: 2px solid var(--bg3);
}
.chat__name { font-weight: 700; font-size: 0.95rem; }
.chat__status { font-size: 0.75rem; color: #4CAF50; }

.chat__messages {
  padding: 24px;
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
  scroll-behavior: smooth;
}
.chat__messages::-webkit-scrollbar { width: 4px; }
.chat__messages::-webkit-scrollbar-track { background: transparent; }
.chat__messages::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }

.chat__msg {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  animation: msgIn 0.35s cubic-bezier(.2,1,.4,1) both;
}
.chat__msg--user { flex-direction: row-reverse; }

@keyframes msgIn {
  from { opacity: 0; transform: translateY(12px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.chat__bubble {
  max-width: 75%;
  padding: 12px 16px;
  border-radius: 18px;
  font-size: 0.9rem;
  line-height: 1.55;
}
.chat__msg--bot .chat__bubble {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-bottom-left-radius: 4px;
  color: var(--text);
}
.chat__msg--user .chat__bubble {
  background: var(--gold);
  color: #0A0A0A;
  border-bottom-right-radius: 4px;
  font-weight: 500;
}

.chat__typing {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 4px 24px 16px;
  height: 36px;
  flex-shrink: 0;
  visibility: hidden;
}
.chat__typing.active { visibility: visible; }
.chat__typing span {
  width: 7px; height: 7px;
  background: var(--text3);
  border-radius: 50%;
  animation: typingBounce 1.2s ease infinite;
}
.chat__typing span:nth-child(2) { animation-delay: 0.2s; }
.chat__typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingBounce {
  0%, 60%, 100% { transform: translateY(0); }
  30% { transform: translateY(-6px); }
}

/* ===== ABOUT ===== */
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about__desc {
  color: var(--text2);
  margin-bottom: 28px;
  line-height: 1.75;
  font-size: 1rem;
}

/* Profile visual */
.about__profile {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 420px;
}
.about__profile-glow {
  position: absolute;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(200,169,110,0.1) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

/* Forgó gyűrűk */
.about__rings {
  position: relative;
  width: 220px; height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid transparent;
}
.about__ring--1 {
  width: 220px; height: 220px;
  border-color: rgba(200,169,110,0.2);
  animation: ringRotate 12s linear infinite;
}
.about__ring--2 {
  width: 160px; height: 160px;
  border-color: rgba(200,169,110,0.15);
  animation: ringRotate 8s linear infinite reverse;
}
.about__ring--3 {
  width: 100px; height: 100px;
  border-color: rgba(200,169,110,0.25);
  animation: ringRotate 5s linear infinite;
}
@keyframes ringRotate {
  to { transform: rotate(360deg); }
}

.about__ring-dot {
  position: absolute;
  top: -4px; left: 50%;
  transform: translateX(-50%);
  width: 7px; height: 7px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--gold);
}

.about__ring-center {
  position: relative;
  z-index: 2;
  width: 60px; height: 60px;
  background: rgba(20,20,20,0.9);
  border: 1px solid rgba(200,169,110,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  box-shadow: 0 0 30px rgba(200,169,110,0.15);
}
.about__ring-center svg {
  width: 28px; height: 28px;
}

.about__badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(16,16,16,0.95);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text2);
  white-space: nowrap;
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}
.about__badge svg { width: 14px; height: 14px; color: var(--gold); flex-shrink: 0; }
.about__badge--1 { top: 60px; right: 10px; }
.about__badge--2 { top: 50%; left: -10px; transform: translateY(-50%); }
.about__badge--3 { bottom: 70px; right: 20px; }

.about__available {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(16,16,16,0.95);
  border: 1px solid rgba(76,175,80,0.25);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 0.76rem;
  font-weight: 500;
  color: var(--text2);
  white-space: nowrap;
  backdrop-filter: blur(8px);
}
.about__available-dot {
  width: 7px; height: 7px;
  background: #4CAF50;
  border-radius: 50%;
  animation: pulse 2s ease infinite;
  flex-shrink: 0;
}

/* Skills */
.about__skills {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}
.about__skill-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 7px;
  color: var(--text2);
}
.about__skill-bar {
  height: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
  overflow: hidden;
}
.about__skill-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  transition: width 1.2s cubic-bezier(0.2, 1, 0.4, 1);
}

/* Stats row */
.about__stats-row {
  display: flex;
  gap: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.about__stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.about__stat-num {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1;
}
.about__stat-label {
  font-size: 0.78rem;
  color: var(--text3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 1024px) {
  .about__inner { grid-template-columns: 1fr; gap: 48px; }
  .about__profile { height: 320px; }
  .about__badge--2 { left: 10px; }
}

/* ===== CONTACT ===== */
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.form-group label { font-size: 0.82rem; font-weight: 500; color: var(--text2); }
.form-group input, .form-group select, .form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--text);
  font-family: var(--font);
  font-size: 0.92rem;
  transition: border-color var(--transition);
  outline: none;
  width: 100%;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text3); }
.form-group select option { background: #161616; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 100px; }

.contact__info { display: flex; flex-direction: column; gap: 28px; padding-top: 8px; }
.contact__item { display: flex; align-items: center; gap: 16px; }
.contact__item-icon {
  width: 44px; height: 44px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}
.contact__item-icon svg { width: 20px; height: 20px; }
.contact__item-label { font-size: 0.75rem; color: var(--text3); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 2px; }
.contact__item-value { font-weight: 500; transition: color var(--transition); }
.contact__item-value:hover { color: var(--gold); }
.contact__trial {
  background: rgba(200, 169, 110, 0.05);
  border: 1px solid rgba(200, 169, 110, 0.15);
  border-radius: var(--radius);
  padding: 24px;
  margin-top: 8px;
}
.contact__trial p:last-child { color: var(--text2); font-size: 0.86rem; margin-top: 6px; }

/* ===== FOOTER ===== */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 40px 0;
}
.footer__inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.footer__brand p { color: var(--text3); font-size: 0.82rem; margin-top: 6px; }
.footer__links { display: flex; gap: 28px; }
.footer__links a { color: var(--text3); font-size: 0.85rem; transition: color var(--transition); }
.footer__links a:hover { color: var(--gold); }
.footer__copy { color: var(--text3); font-size: 0.78rem; width: 100%; text-align: center; padding-top: 20px; border-top: 1px solid var(--border); margin-top: 8px; }

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeInUp 0.8s ease forwards;
}
.fade-in:nth-child(1) { animation-delay: 0.1s; }
.fade-in:nth-child(2) { animation-delay: 0.25s; }
.fade-in:nth-child(3) { animation-delay: 0.4s; }
.fade-in:nth-child(4) { animation-delay: 0.55s; }
.fade-in:nth-child(5) { animation-delay: 0.7s; }
.fade-in:nth-child(6) { animation-delay: 0.85s; }

@keyframes fadeInUp {
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal--left {
  transform: translateX(-40px);
}
.reveal--right {
  transform: translateX(40px);
}
.reveal.visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__left { display: flex; flex-direction: column; align-items: center; }
  .hero__sub { max-width: 100%; }
  .hero__stats { justify-content: center; }
  .hero__right { justify-content: center; }
  .hero__dashboard { max-width: 380px; }
  .dash-notification { right: -10px; }

  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .pricing__grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .pricing-card--featured { transform: none; }
  .pricing-card--featured:hover { transform: translateY(-4px); }
  .about__inner { grid-template-columns: 1fr; gap: 48px; }
  .contact__inner { grid-template-columns: 1fr; }
}

/* ===== MOBILE SLIDER ===== */
.slider__dots {
  display: none;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.slider__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}
.slider__dot.active {
  background: var(--gold);
  width: 22px;
  border-radius: 4px;
}

.slider__overflow {
  overflow: hidden;
  width: 100%;
}

@media (max-width: 768px) {
  .slider__dots { display: flex; }

  .services__grid,
  .pricing__grid {
    display: flex !important;
    flex-wrap: nowrap !important;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
    gap: 0 !important;
  }

  .services__grid .service-card,
  .pricing__grid .pricing-card {
    flex: 0 0 100% !important;
    padding: 28px 24px !important;
    opacity: 1 !important;
    transform: none !important;
    transition: border-color 0.3s, box-shadow 0.3s !important;
    border-radius: var(--radius-lg) !important;
  }

  .pricing-card--featured {
    transform: none !important;
  }
}

@media (max-width: 768px) {
  .nav__links {
    position: fixed;
    top: 0; right: -100%;
    width: 280px; height: 100vh;
    background: rgba(10,10,10,0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    transition: right 0.3s ease;
    border-left: 1px solid var(--border);
  }
  .nav__links.open { right: 0; }
  .nav__links a { font-size: 1.1rem; }
  .nav__hamburger { display: flex; }

  .hero { padding: 100px 0 60px; }
  .hero__dashboard { height: 340px; max-width: 320px; }
  .dash-notification { display: none; }

  .section { padding: 72px 0; }
  .services__grid { grid-template-columns: 1fr; }
  .process__steps { flex-direction: column; align-items: center; }
  .process__connector { width: 1px; height: 40px; background: linear-gradient(180deg, var(--border), var(--gold), var(--border)); margin: 0; }
  .process__step { max-width: 100%; }
  .form-row { grid-template-columns: 1fr; }
  .footer__inner { flex-direction: column; text-align: center; }
  .footer__links { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 320px; }
  .hero__stats { gap: 16px; }
  .hero__stat-divider { display: none; }
}
