/* =========================================
   JOTA SOLUTIONS — Landing Page Styles
   ========================================= */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --color-bg:        #0a0a0f;
  --color-surface:   #12121a;
  --color-border:    #1e1e2e;
  --color-accent:    #6c63ff;
  --color-accent-2:  #a78bfa;
  --color-text:      #e8e8f0;
  --color-muted:     #888899;
  --font:            'Segoe UI', system-ui, -apple-system, sans-serif;
  --radius:          12px;
  --max-w:           1100px;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font);
  line-height: 1.6;
  font-size: 1rem;
}

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

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
}
.btn:hover { opacity: 0.85; transform: translateY(-1px); }
.btn--primary  { background: var(--color-accent); color: #fff; }
.btn--outline  { border: 1.5px solid var(--color-accent); color: var(--color-accent); background: transparent; }
.btn--ghost    { color: var(--color-muted); background: transparent; }

/* ---- NAV ---- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav__logo {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-text);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.nav nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav nav a:not(.btn) {
  color: var(--color-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.nav nav a:not(.btn):hover { color: var(--color-text); }

/* ---- HERO ---- */
.hero {
  padding: 7rem 0 6rem;
  text-align: center;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(108, 99, 255, 0.15) 0%, transparent 70%);
}
.hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  color: var(--color-accent-2);
  margin-bottom: 1.25rem;
  font-weight: 600;
}
.hero__title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}
.hero__sub {
  max-width: 560px;
  margin: 0 auto 2.5rem;
  color: var(--color-muted);
  font-size: 1.1rem;
}
.hero__actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ---- SECTIONS ---- */
.section {
  padding: 5rem 0;
}
.section__title {
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 0.75rem;
}
.section__sub {
  color: var(--color-muted);
  font-size: 1.05rem;
  margin-bottom: 3rem;
}

/* ---- SERVICES ---- */
.services {
  border-top: 1px solid var(--color-border);
  text-align: center;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  text-align: left;
  transition: border-color 0.2s, transform 0.2s;
}
.card:hover {
  border-color: var(--color-accent);
  transform: translateY(-4px);
}
.card__icon {
  font-size: 1.5rem;
  color: var(--color-accent);
  margin-bottom: 1rem;
}
.card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.card p {
  color: var(--color-muted);
  font-size: 0.9rem;
}

/* ---- ABOUT ---- */
.about {
  border-top: 1px solid var(--color-border);
  background: var(--color-surface);
}
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about__text p {
  color: var(--color-muted);
  margin-top: 1.25rem;
  font-size: 1rem;
}
.about__stats {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.stat__number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-accent-2);
  letter-spacing: -0.02em;
}
.stat__label {
  font-size: 0.85rem;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ---- CONTACT ---- */
.contact {
  border-top: 1px solid var(--color-border);
  text-align: center;
}
.contact__inner { max-width: 640px; margin: 0 auto; }
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2.5rem;
  text-align: left;
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.contact__form input,
.contact__form textarea {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 0.85rem 1rem;
  color: var(--color-text);
  font-family: var(--font);
  font-size: 0.95rem;
  width: 100%;
  transition: border-color 0.2s;
}
.contact__form input:focus,
.contact__form textarea:focus {
  outline: none;
  border-color: var(--color-accent);
}
.contact__form input::placeholder,
.contact__form textarea::placeholder {
  color: var(--color-muted);
}
.contact__form .btn { align-self: flex-start; }

/* ---- FOOTER ---- */
.footer {
  border-top: 1px solid var(--color-border);
  padding: 2rem 0;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--color-muted);
}
.footer__inner a {
  color: var(--color-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer__inner a:hover { color: var(--color-text); }

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .nav nav a:not(.btn) { display: none; }

  .about__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .about__stats {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .form__row {
    grid-template-columns: 1fr;
  }

  .footer__inner {
    flex-direction: column;
    text-align: center;
  }
}

