@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --bg:       #080808;
  --bg2:      #0f0f0f;
  --card:     #141414;
  --border:   #1f1f1f;
  --white:    #f5f5f5;
  --mid:      #888;
  --dim:      #444;
  --accent:   #5bc8f5;
  --accent2:  #3ab5e0;
}

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}

/* ── NAV ──────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 24px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(8,8,8,0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.nav-logo span { color: var(--accent); }
.nav-links { display: flex; gap: 40px; align-items: center; }
.nav-links a {
  color: var(--mid);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: var(--accent) !important;
  color: var(--bg) !important;
  padding: 10px 22px;
  font-weight: 600 !important;
  font-size: 13px !important;
  border-radius: 4px;
  transition: all 0.2s !important;
}
.nav-cta:hover { background: var(--accent2) !important; transform: translateY(-1px); }

/* ── HERO ─────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 48px 80px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-label::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--accent);
}
.hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(52px, 7vw, 100px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 32px;
}
.hero h1 em {
  font-style: normal;
  color: var(--accent);
  position: relative;
}
.hero-sub {
  font-size: 18px;
  color: var(--mid);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 48px;
  font-weight: 400;
}
.hero-ctas { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.btn-primary {
  background: var(--accent);
  color: var(--bg);
  padding: 15px 32px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.2s;
}
.btn-primary:hover { background: var(--accent2); transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: var(--mid);
  padding: 15px 32px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid var(--border);
  cursor: pointer;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.2s;
}
.btn-ghost:hover { border-color: var(--mid); color: var(--white); }

.hero-scroll {
  position: absolute;
  bottom: 48px;
  left: 48px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.hero-scroll::after {
  content: '';
  width: 48px; height: 1px;
  background: var(--dim);
}

/* ── MARQUEE ──────────────────────────── */
.marquee {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  overflow: hidden;
  background: var(--bg2);
}
.marquee-inner {
  display: inline-block;
  white-space: nowrap;
  animation: marquee 20s linear infinite;
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.marquee-inner span { margin: 0 32px; }
.marquee-inner .dot { color: var(--accent); }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── SECTION ──────────────────────────── */
.section { padding: 120px 48px; max-width: 1200px; margin: 0 auto; }
.section-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-label::before { content: ''; width: 20px; height: 1px; background: var(--accent); }
.section h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 16px;
}
.section-sub { color: var(--mid); font-size: 16px; max-width: 500px; line-height: 1.7; }

/* ── WORK ─────────────────────────────── */
.work-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
  margin-top: 64px;
}
.work-card {
  background: var(--card);
  padding: 48px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
  text-decoration: none;
}
.work-card:hover { background: #1a1a1a; }
.work-card:hover .work-arrow { transform: translate(4px, -4px); }
.work-num {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  color: var(--dim);
  letter-spacing: 0.2em;
  margin-bottom: 32px;
}
.work-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  margin-bottom: 16px;
}
.tag-fintech { background: rgba(200,241,53,0.1); color: var(--accent); border: 1px solid rgba(200,241,53,0.2); }
.tag-local { background: rgba(26,111,255,0.1); color: #4d8fff; border: 1px solid rgba(26,111,255,0.2); }
.tag-booking { background: rgba(196,150,90,0.1); color: #C4965A; border: 1px solid rgba(196,150,90,0.2); }
.work-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  line-height: 1.1;
}
.work-desc { font-size: 14px; color: var(--mid); line-height: 1.6; max-width: 400px; }
.work-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.work-stack { display: flex; gap: 8px; flex-wrap: wrap; }
.work-tech {
  font-size: 10px;
  font-weight: 600;
  color: var(--dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 8px;
  border: 1px solid var(--border);
  border-radius: 2px;
}
.work-arrow {
  font-size: 20px;
  color: var(--accent);
  transition: transform 0.3s;
}

/* ── SERVICES ─────────────────────────── */
.services-section { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.services-inner { max-width: 1200px; margin: 0 auto; padding: 120px 48px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  margin-top: 64px;
}
.service-item {
  background: var(--card);
  padding: 40px 36px;
  transition: background 0.2s;
}
.service-item:hover { background: #1a1a1a; }
.service-num {
  font-family: 'Syne', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--border);
  line-height: 1;
  margin-bottom: 24px;
}
.service-item h3 {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.service-item p { font-size: 14px; color: var(--mid); line-height: 1.6; }
.service-price {
  margin-top: 24px;
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--accent);
}
.service-price span { font-size: 13px; font-weight: 400; color: var(--dim); }

/* ── ABOUT ────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 64px;
}
.about-left p {
  font-size: 16px;
  color: var(--mid);
  line-height: 1.8;
  margin-bottom: 20px;
}
.about-right {}
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
}
.about-stat {
  background: var(--card);
  padding: 32px;
}
.about-stat .num {
  font-family: 'Syne', sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.about-stat .label {
  font-size: 13px;
  color: var(--mid);
  margin-top: 6px;
}

/* ── CTA ──────────────────────────────── */
.cta-section {
  background: var(--accent);
  padding: 100px 48px;
  text-align: center;
}
.cta-section h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 800;
  color: var(--bg);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 24px;
}
.cta-section p { font-size: 18px; color: rgba(8,8,8,0.6); margin-bottom: 40px; }
.btn-dark {
  background: var(--bg);
  color: var(--white);
  padding: 16px 40px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 15px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.2s;
  display: inline-block;
}
.btn-dark:hover { background: #1a1a1a; transform: translateY(-2px); }

/* ── FOOTER ───────────────────────────── */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--white);
}
.footer-logo span { color: var(--accent); }
footer p { font-size: 13px; color: var(--dim); }
.footer-contact { text-align: right; }
.footer-contact a {
  display: block;
  color: var(--mid);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
  margin-bottom: 4px;
}
.footer-contact a:hover { color: var(--accent); }

/* ── BUSINESS CARD ────────────────────── */
.card-preview-section {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 80px 48px;
  text-align: center;
  display: none;
}
.biz-card {
  width: 350px;
  height: 200px;
  background: #0a0a0a;
  border: 1px solid #222;
  border-radius: 8px;
  padding: 28px 32px;
  position: relative;
  overflow: hidden;
  display: inline-block;
  text-align: left;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.biz-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--accent);
}
.biz-card-logo {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
}
.biz-card-logo span { color: var(--accent); }
.biz-card-title {
  font-size: 10px;
  color: #555;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.biz-card-name {
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}
.biz-card-info {
  font-size: 11px;
  color: #666;
  margin-top: 8px;
  line-height: 1.8;
}
.biz-card-info a { color: var(--accent); text-decoration: none; }

@media (max-width: 768px) {
  nav { padding: 20px 24px; }
  .hero { padding: 100px 24px 60px; }
  .section { padding: 80px 24px; }
  .work-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .nav-links a:not(.nav-cta) { display: none; }
  footer { padding: 32px 24px; flex-direction: column; text-align: center; }
  .footer-contact { text-align: center; }
}
