* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Segoe UI', system-ui, sans-serif;
  background: #14120f;
  color: #f5ead9;
  min-height: 100vh;
}

.page {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

a {
  color: inherit;
}

/* Navbar */

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.logo span {
  color: #e0a458;
}

.nav-links {
  display: flex;
  gap: 24px;
}

.nav-links a {
  text-decoration: none;
  color: rgba(245, 234, 217, 0.75);
  font-size: 0.95rem;
  transition: color 0.15s ease;
}

.nav-links a:hover {
  color: #e0a458;
}

main {
  flex: 1;
}

/* Hero */

.hero {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 40px 0 64px;
}

.hero-text {
  flex: 1.1;
  min-width: 280px;
}

.eyebrow {
  display: inline-block;
  color: #e0a458;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  margin-bottom: 14px;
}

.hero-text h1 {
  font-size: 2.4rem;
  line-height: 1.2;
  margin: 0 0 18px;
}

.hero-text p {
  color: rgba(245, 234, 217, 0.75);
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0 0 28px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn-primary,
.btn-secondary {
  display: inline-block;
  text-decoration: none;
  border-radius: 10px;
  padding: 13px 22px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: opacity 0.2s ease, transform 0.1s ease;
}

.btn-primary {
  background: #e0a458;
  color: #2b1810;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #f5ead9;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-primary:hover,
.btn-secondary:hover {
  opacity: 0.85;
}

.btn-primary:active,
.btn-secondary:active {
  transform: scale(0.98);
}

.hero-visual {
  flex: 1;
  min-width: 260px;
  max-width: 420px;
}

.hero-visual svg {
  width: 100%;
  height: auto;
  display: block;
}

/* Sections */

.section-title {
  font-size: 1.7rem;
  text-align: center;
  margin: 0 0 8px;
}

.section-subtitle {
  text-align: center;
  color: rgba(245, 234, 217, 0.7);
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.services {
  padding: 48px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.services .section-title {
  margin-bottom: 36px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.service-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: left;
}

.service-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 14px;
}

.service-card h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
}

.service-card p {
  margin: 0;
  color: rgba(245, 234, 217, 0.72);
  font-size: 0.92rem;
  line-height: 1.55;
}

.portfolio {
  padding: 48px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.apps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.app-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 28px 24px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.app-card:not(.app-card-soon):hover {
  transform: translateY(-4px);
  border-color: rgba(224, 164, 88, 0.5);
  background: rgba(255, 255, 255, 0.09);
}

.app-icon {
  font-size: 2.2rem;
}

.app-card h3 {
  margin: 0;
  font-size: 1.3rem;
}

.app-card p {
  margin: 0;
  color: rgba(245, 234, 217, 0.75);
  font-size: 0.92rem;
  line-height: 1.5;
  flex: 1;
}

.app-cta {
  color: #e0a458;
  font-weight: 600;
  font-size: 0.95rem;
}

.app-card-soon {
  opacity: 0.55;
  border-style: dashed;
}

/* CTA band */

.cta-band {
  text-align: center;
  background: linear-gradient(135deg, rgba(224, 164, 88, 0.18), rgba(224, 164, 88, 0.04));
  border: 1px solid rgba(224, 164, 88, 0.25);
  border-radius: 20px;
  padding: 48px 24px;
  margin: 16px 0 56px;
}

.cta-band h2 {
  margin: 0 0 10px;
  font-size: 1.6rem;
}

.cta-band p {
  margin: 0 0 22px;
  color: rgba(245, 234, 217, 0.75);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 14px 16px;
  text-decoration: none;
  color: #f5ead9;
  font-size: 0.92rem;
  transition: border-color 0.15s ease, background 0.15s ease;
}

a.contact-item:hover {
  border-color: rgba(224, 164, 88, 0.5);
  background: rgba(255, 255, 255, 0.1);
}

.contact-item-static {
  cursor: default;
}

.contact-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

/* Footer */

footer {
  text-align: center;
  font-size: 0.75rem;
  color: rgba(245, 234, 217, 0.45);
  padding-bottom: 24px;
}

footer a {
  color: rgba(245, 234, 217, 0.6);
}

/* Responsive */

@media (max-width: 720px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding-top: 24px;
  }

  .hero-text p {
    max-width: none;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    max-width: 300px;
  }

  .nav-links {
    gap: 14px;
  }

  .nav-links a {
    font-size: 0.85rem;
  }
}
