/* ===== Makora — brand tokens ===== */
:root {
  --purple: #6156bb;
  --purple-deep: #4f46a3;
  --cyan: #0cccf6;
  --ink: #1c2030;
  --slate: #5b6172;
  --mist: #f6f7fb;
  --line: #e8e9f2;
  --grad: linear-gradient(100deg, var(--purple) 0%, var(--cyan) 100%);
  --radius: 16px;
  --maxw: 1120px;
  --shadow: 0 10px 30px rgba(31, 36, 64, 0.08);
  --shadow-lg: 0 20px 50px rgba(31, 36, 64, 0.12);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Quicksand", ui-sans-serif, system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

section { scroll-margin-top: 90px; }

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--grad); color: #fff; box-shadow: 0 8px 20px rgba(97, 86, 187, 0.35); }
.btn-ghost { background: transparent; border-color: var(--line); color: var(--ink); }
.btn-ghost:hover { border-color: var(--purple); color: var(--purple); }
.btn-light { background: #fff; color: var(--purple); font-size: 1.15rem; box-shadow: var(--shadow-lg); }

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem clamp(1.2rem, 4vw, 3rem);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.brand img { height: 34px; width: auto; }
.nav { display: flex; align-items: center; gap: clamp(1rem, 3vw, 2rem); font-weight: 600; }
.nav a { color: var(--slate); transition: color 0.15s; }
.nav a:hover { color: var(--purple); }
.nav-cta {
  background: var(--grad); color: #fff !important;
  padding: 0.55rem 1.2rem; border-radius: 999px;
  box-shadow: 0 6px 16px rgba(97, 86, 187, 0.3);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: clamp(3.5rem, 9vw, 7rem) clamp(1.2rem, 4vw, 3rem) clamp(3rem, 7vw, 5rem);
  background:
    radial-gradient(900px 500px at 15% -10%, rgba(97, 86, 187, 0.12), transparent 60%),
    radial-gradient(800px 500px at 100% 0%, rgba(12, 204, 246, 0.12), transparent 55%);
  overflow: hidden;
}
.hero-inner { max-width: var(--maxw); margin: 0 auto; text-align: center; }
.eyebrow {
  display: inline-block; font-weight: 600; letter-spacing: 0.04em;
  text-transform: uppercase; font-size: 0.8rem; color: var(--purple);
  background: rgba(97, 86, 187, 0.08); padding: 0.4rem 0.9rem; border-radius: 999px;
  margin-bottom: 1.4rem;
}
.hero h1 {
  font-size: clamp(2.2rem, 6vw, 4rem); line-height: 1.08; font-weight: 700;
  letter-spacing: -0.02em; margin-bottom: 1.3rem;
}
.grad { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.lede { max-width: 640px; margin: 0 auto 2rem; font-size: clamp(1.05rem, 2.4vw, 1.3rem); color: var(--slate); }
.hero-actions { display: flex; gap: 0.9rem; justify-content: center; flex-wrap: wrap; }
.hero-meta { margin-top: 1.8rem; font-size: 0.92rem; color: var(--slate); font-weight: 500; }

/* ===== Experience strip ===== */
.strip {
  max-width: var(--maxw); margin: 0 auto;
  padding: 2.2rem clamp(1.2rem, 4vw, 3rem);
  text-align: center; border-bottom: 1px solid var(--line);
}
.strip-label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--slate); margin-bottom: 1rem; }
.strip-logos {
  list-style: none; display: flex; flex-wrap: wrap; gap: clamp(1.2rem, 4vw, 3rem);
  justify-content: center; align-items: center;
  font-weight: 700; font-size: clamp(1rem, 2vw, 1.25rem); color: #aab0c2;
}

/* ===== Sections ===== */
.section { max-width: var(--maxw); margin: 0 auto; padding: clamp(3.5rem, 8vw, 6rem) clamp(1.2rem, 4vw, 3rem); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 3rem; }
.section-head h2, .about h2, .contact h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 700; letter-spacing: -0.01em; }
.section-head h2 { margin-bottom: 0.8rem; }
.section-head p { color: var(--slate); font-size: 1.1rem; }

/* ===== Service cards ===== */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.4rem; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.8rem; box-shadow: var(--shadow); transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card-icon {
  width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center;
  font-size: 1.3rem; color: #fff; background: var(--grad); margin-bottom: 1.1rem;
}
.card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.5rem; }
.card p { color: var(--slate); }

/* ===== About ===== */
.about { background: var(--mist); border-radius: 0; max-width: none; }
.about-grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center;
}
.about-text h2 { margin-bottom: 1.2rem; }
.about-text p { color: var(--slate); margin-bottom: 1rem; font-size: 1.05rem; }
.about-text strong { color: var(--ink); }
.about-text .btn { margin-top: 0.6rem; }
.about-facts { list-style: none; display: grid; gap: 1rem; }
.about-facts li {
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  padding: 1.1rem 1.3rem; box-shadow: var(--shadow);
}
.fact-k { display: block; font-weight: 700; font-size: 1.25rem; color: var(--purple); }
.fact-v { display: block; color: var(--slate); font-size: 0.95rem; }

/* ===== Contact ===== */
.contact {
  background: var(--grad); color: #fff; text-align: center;
  padding: clamp(3.5rem, 8vw, 6rem) clamp(1.2rem, 4vw, 3rem);
}
.contact-inner { max-width: 640px; margin: 0 auto; }
.contact h2 { margin-bottom: 0.7rem; }
.contact p { font-size: 1.15rem; opacity: 0.92; margin-bottom: 2rem; }

/* ===== Footer ===== */
.site-footer { background: var(--ink); color: #c7cad6; text-align: center; padding: 3rem 1.5rem; }
.footer-logo { height: 30px; width: auto; margin: 0 auto 1.2rem; opacity: 0.95; }
.site-footer p { font-size: 0.92rem; max-width: 560px; margin: 0 auto; }
.footer-fine { margin-top: 0.8rem; opacity: 0.6; font-size: 0.85rem; }

/* ===== Responsive ===== */
@media (max-width: 760px) {
  .about-grid { grid-template-columns: 1fr; }
  .nav a:not(.nav-cta) { display: none; }
}
