:root {
  --primary: #00C8A0;
  --primary-dark: #00B894;
  --dark: #111827;
  --light: #F5F5F7;
  --text-main: #111111;
  --text-sec: #4B5563;
  --accent-blue: #2563EB;
  --border-soft: #E5E7EB;
  --card-bg: #F3F4F6;
  --white: #FFFFFF;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #1f2937 0, #020617 55%);
  color: var(--white);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px 16px 40px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  width: 220px;
  height: auto;
  display: block;
}

.tagline {
  font-size: 0.85rem;
  color: var(--text-sec);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header-pill {
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  font-size: 0.8rem;
  color: #e5e7eb;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(10px);
}

.header-pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #22C55E;
  box-shadow: 0 0 10px #22C55E;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
}

.hero-title {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 12px;
}

.hero-title span {
  color: var(--primary);
}

.hero-subtitle {
  font-size: 1rem;
  color: #e5e7eb;
  margin-bottom: 18px;
}

.hero-highlight {
  font-size: 0.9rem;
  color: var(--text-sec);
  margin-bottom: 20px;
}

.hero-highlight strong {
  color: var(--primary);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.btn {
  border-radius: 999px;
  padding: 10px 20px;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.18s ease-out;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: var(--dark);
  box-shadow: 0 10px 25px rgba(0, 200, 160, 0.35);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(0, 200, 160, 0.45);
}

.btn-ghost {
  background: transparent;
  color: #e5e7eb;
  border: 1px solid rgba(148, 163, 184, 0.7);
}

.btn-ghost:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-1px);
}

.hero-note {
  font-size: 0.8rem;
  color: var(--text-sec);
}

.hero-note strong {
  color: #e5e7eb;
}

.hero-card {
  background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.18), rgba(15, 23, 42, 0.95));
  border-radius: 24px;
  padding: 18px 18px 16px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.9);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 0 0, rgba(45, 212, 191, 0.12), transparent 55%),
    radial-gradient(circle at 100% 0, rgba(59, 130, 246, 0.12), transparent 55%);
  opacity: 0.9;
  pointer-events: none;
}

.hero-card-inner {
  position: relative;
  z-index: 1;
}

.hero-card-title {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #cbd5f5;
  margin-bottom: 4px;
}

.hero-card-main {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.hero-card-main span {
  color: var(--primary);
}

.hero-card-text {
  font-size: 0.85rem;
  color: #cbd5f5;
  margin-bottom: 10px;
}

.hero-card-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}

.badge {
  font-size: 0.75rem;
  padding: 4px 9px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: rgba(15, 23, 42, 0.7);
  color: #e5e7eb;
}

.hero-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  color: #9ca3af;
}

.hero-card-footer span {
  color: #e5e7eb;
}

.section {
  background: rgba(15, 23, 42, 0.85);
  border-radius: 20px;
  padding: 18px 18px 16px;
  border: 1px solid rgba(31, 41, 55, 0.9);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.9);
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.section-title {
  font-size: 1rem;
  font-weight: 600;
}

.section-subtitle {
  font-size: 0.8rem;
  color: var(--text-sec);
}

.apps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
}

.app-card {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.98));
  border-radius: 16px;
  padding: 12px 12px 10px;
  border: 1px solid rgba(55, 65, 81, 0.9);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.app-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.app-name {
  font-size: 0.95rem;
  font-weight: 600;
}

.app-tag {
  font-size: 0.7rem;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.7);
  color: #e5e7eb;
}

.app-desc {
  font-size: 0.8rem;
  color: #9ca3af;
}

.app-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.store-btn {
  flex: 1 1 120px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: rgba(15, 23, 42, 0.9);
  font-size: 0.8rem;
  color: #e5e7eb;
  cursor: pointer;
  transition: all 0.18s ease-out;
}

.store-btn span {
  font-size: 0.7rem;
  color: #9ca3af;
  display: block;
}

.store-btn strong {
  font-size: 0.8rem;
  color: #e5e7eb;
}

.store-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-1px);
}

.store-icon {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--primary), var(--accent-blue));
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 18px;
  align-items: flex-start;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.9rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #e5e7eb;
}

.contact-label {
  font-weight: 600;
  color: var(--primary);
  min-width: 80px;
}

.contact-value a {
  color: #e5e7eb;
}

.contact-value a:hover {
  color: var(--primary);
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.social-pill {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: #e5e7eb;
  background: rgba(15, 23, 42, 0.9);
  cursor: pointer;
  transition: all 0.18s ease-out;
}

.social-pill:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-1px);
}

.contact-note {
  font-size: 0.8rem;
  color: var(--text-sec);
  margin-top: 6px;
}

.contact-card {
  background: rgba(15, 23, 42, 0.95);
  border-radius: 16px;
  padding: 12px 12px 10px;
  border: 1px solid rgba(55, 65, 81, 0.9);
  font-size: 0.8rem;
  color: #9ca3af;
}

.contact-card strong {
  color: #e5e7eb;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.gallery-card {
  background: rgba(15, 23, 42, 0.95);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(55, 65, 81, 0.9);
}

.gallery-card img {
  width: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.gallery-caption {
  padding: 12px;
  font-size: 0.85rem;
  color: #e5e7eb;
  background: rgba(15, 23, 42, 0.9);
}

.footer {
  margin-top: auto;
  padding: 12px 16px 18px;
  font-size: 0.75rem;
  color: #9ca3af;
  text-align: center;
  border-top: 1px solid rgba(31, 41, 55, 0.9);
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.9), #020617);
}

.wa-float {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 40;
}

.wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: #22C55E;
  color: #052e16;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 14px 35px rgba(22, 163, 74, 0.6);
  cursor: pointer;
  border: none;
  transition: all 0.18s ease-out;
}

.wa-btn:hover {
  background: #16a34a;
  transform: translateY(-1px);
}

.wa-dot {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #bbf7d0, #16a34a);
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
  }
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .header {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .wa-float {
    right: 12px;
    bottom: 12px;
  }
  .logo {
    width: 190px;
  }
}
