/* ═══════════════════════════════════════════════
   Jamiiz AI — Main Stylesheet
   Colors pulled from logo3: dark teal + orange
═══════════════════════════════════════════════ */

/* ─── Reset ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: #0F1F1C;
  background: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; padding: 0; margin: 0; }

/* ─── Variables ──────────────────────────────── */
:root {
  --teal-900: #071E1A;
  --teal-800: #0C3530;
  --teal-700: #0F4A3E;
  --teal-600: #145C50;
  --teal-400: #1DA88A;
  --orange:   #E8621A;
  --orange-lt: #F59A2A;
  --white:    #FFFFFF;
  --off-white:#F8FAF9;
  --gray-50:  #F4F7F6;
  --gray-100: #E8EEEC;
  --gray-200: #CDD8D5;
  --gray-500: #6B8078;
  --gray-900: #0F1F1C;

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;

  --shadow-sm: 0 2px 8px rgba(7,30,26,0.07);
  --shadow-md: 0 8px 32px rgba(7,30,26,0.11);
  --shadow-lg: 0 24px 64px rgba(7,30,26,0.15);
}

/* ─── Container ──────────────────────────────── */
.container {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
}

/* ─── Typography ─────────────────────────────── */
h1 {
  font-size: clamp(42px, 6vw, 80px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.04em;
}
h2 {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
h3 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
h4 {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
p { line-height: 1.7; }

/* ─── Eyebrow ────────────────────────────────── */
.eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}
.eyebrow-light { color: var(--orange-lt); }

/* ─── Buttons ────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 28px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease,
              transform 0.18s ease, box-shadow 0.18s ease;
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}
.btn-primary:hover {
  background: #CF561A;
  border-color: #CF561A;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(232,98,26,0.35);
}
.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.38);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.65);
}
.btn-outline {
  background: transparent;
  color: var(--teal-800);
  border-color: var(--gray-200);
}
.btn-outline:hover {
  background: var(--gray-50);
  border-color: var(--gray-200);
}

/* ─── Scroll reveal ──────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ════════════════════════════════════════════════
   NAVIGATION
════════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gray-100);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand-logo {
  height: 38px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-500);
}
.nav-links a:hover { color: var(--gray-900); }
.nav-cta {
  background: var(--orange) !important;
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
}
.nav-cta:hover {
  background: #CF561A !important;
  color: #fff !important;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gray-900);
  border-radius: 2px;
  transition: all 0.22s ease;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════ */
.hero {
  background: linear-gradient(140deg, #1B3A5C 0%, #112A46 55%, #0D2340 100%);
  padding: 108px 0 100px;
  position: relative;
  overflow: hidden;
}
/* dot grid overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 34px 34px;
  pointer-events: none;
}
/* orange glow blob */
.hero::after {
  content: '';
  position: absolute;
  top: -160px;
  right: -80px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,98,26,0.14), transparent 68%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.82);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 9px 22px;
  border-radius: 999px;
  margin-bottom: 36px;
}
.hero h1 {
  color: #fff;
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: normal;
  color: var(--orange-lt);
}
.hero-sub {
  font-size: 20px;
  color: rgba(255,255,255,0.68);
  max-width: 660px;
  margin: 0 auto 44px;
  line-height: 1.65;
}
.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 68px;
}
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 44px;
  flex-wrap: wrap;
  gap: 0;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 52px;
}
.hero-stat strong {
  display: block;
  font-size: 34px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 6px;
}
.hero-stat span {
  font-size: 13px;
  color: rgba(255,255,255,0.50);
}
.hero-stat-div {
  width: 1px;
  height: 52px;
  background: rgba(255,255,255,0.14);
  flex-shrink: 0;
}

/* ════════════════════════════════════════════════
   SECTIONS — shared
════════════════════════════════════════════════ */
.section { padding: 100px 0; }
.section-head { max-width: 680px; margin-bottom: 56px; }
.section-head h2 { color: var(--gray-900); }
.section-head p {
  font-size: 18px;
  color: var(--gray-500);
  margin-top: 12px;
  line-height: 1.7;
}

/* ════════════════════════════════════════════════
   INTRO / WHY US
════════════════════════════════════════════════ */
.intro-section { background: var(--off-white); }
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.intro-left h2 { color: var(--gray-900); margin-bottom: 18px; }
.intro-left p {
  font-size: 18px;
  color: var(--gray-500);
  line-height: 1.75;
  margin-bottom: 34px;
}
.intro-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.feature-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 24px 26px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.feature-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.feature-icon {
  font-size: 22px;
  line-height: 1;
  flex-shrink: 0;
  padding-top: 2px;
}
.feature-card h4 { color: var(--gray-900); }
.feature-card p { font-size: 15px; color: var(--gray-500); line-height: 1.65; }

/* ════════════════════════════════════════════════
   SERVICES
════════════════════════════════════════════════ */
.services-section { background: #fff; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-top: 3px solid var(--teal-600);
  border-radius: var(--radius-md);
  padding: 36px 30px 32px;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}
.service-card:hover {
  background: #fff;
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}
.service-num {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--orange);
  margin-bottom: 18px;
}
.service-card h3 { color: var(--gray-900); margin-bottom: 12px; }
.service-card > p {
  font-size: 16px;
  color: var(--gray-500);
  line-height: 1.65;
  margin-bottom: 22px;
}
.service-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.service-list li {
  font-size: 14px;
  font-weight: 500;
  color: var(--teal-600);
  padding-left: 18px;
  position: relative;
  line-height: 1.4;
}
.service-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-size: 13px;
}

/* ════════════════════════════════════════════════
   SPRINT / PRICING
════════════════════════════════════════════════ */
.sprint-section {
  background: linear-gradient(140deg, #1B3A5C 0%, #0D2340 100%);
  color: #fff;
}
.sprint-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.sprint-left h2 { color: #fff; margin-bottom: 18px; }
.sprint-left p {
  font-size: 18px;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin-bottom: 36px;
}
.price-block {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 36px;
}
.price-label {
  font-size: 16px;
  color: rgba(255,255,255,0.50);
}
.price-amount {
  font-size: 56px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1;
}
.deliverables-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 24px;
}
.deliverables-list {
  display: flex;
  flex-direction: column;
}
.deliverables-list li {
  font-size: 17px;
  color: rgba(255,255,255,0.80);
  padding: 18px 0 18px 28px;
  border-bottom: 1px solid rgba(255,255,255,0.09);
  position: relative;
  line-height: 1.5;
}
.deliverables-list li:last-child { border-bottom: none; }
.deliverables-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--orange-lt);
  font-weight: 700;
}

/* ════════════════════════════════════════════════
   INDUSTRIES
════════════════════════════════════════════════ */
.industries-section { background: var(--gray-50); }
.industry-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.industry-tags span {
  display: inline-flex;
  align-items: center;
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: 999px;
  padding: 13px 26px;
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-900);
  cursor: default;
  transition: background 0.18s, color 0.18s, border-color 0.18s, transform 0.18s;
}
.industry-tags span:hover {
  background: var(--teal-800);
  color: #fff;
  border-color: var(--teal-800);
  transform: translateY(-2px);
}

/* ════════════════════════════════════════════════
   PROCESS
════════════════════════════════════════════════ */
.process-section { background: #fff; }
.steps-grid {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.step-card {
  flex: 1;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 32px 26px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.step-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.step-num {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--orange);
  margin-bottom: 16px;
}
.step-card h3 { color: var(--gray-900); margin-bottom: 10px; }
.step-card p { font-size: 15px; color: var(--gray-500); line-height: 1.65; }
.step-arrow {
  font-size: 20px;
  color: var(--gray-200);
  padding: 0 14px;
  margin-top: 52px;
  flex-shrink: 0;
}

/* ════════════════════════════════════════════════
   CREDIBILITY
════════════════════════════════════════════════ */
.credibility-section { background: var(--off-white); }
.cred-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.cred-left h2 { color: var(--gray-900); margin-bottom: 18px; }
.cred-left p {
  font-size: 18px;
  color: var(--gray-500);
  line-height: 1.75;
}
.cred-right {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.check-item {
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  font-size: 16px;
  font-weight: 500;
  color: var(--gray-900);
  transition: border-color 0.18s, box-shadow 0.18s;
}
.check-item:hover {
  border-color: var(--teal-400);
  box-shadow: var(--shadow-sm);
}

/* ════════════════════════════════════════════════
   CONTACT
════════════════════════════════════════════════ */
.contact-section { background: #fff; }
.contact-card {
  max-width: 860px;
  margin: 0 auto;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 60px 64px;
}
.contact-head { margin-bottom: 40px; }
.contact-head h2 { color: var(--gray-900); margin-bottom: 12px; }
.contact-head p {
  font-size: 18px;
  color: var(--gray-500);
  line-height: 1.7;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-900);
}
input, textarea {
  font-family: inherit;
  font-size: 15px;
  color: var(--gray-900);
  background: #fff;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
  width: 100%;
}
input::placeholder, textarea::placeholder { color: var(--gray-500); opacity: 0.7; }
input:focus, textarea:focus {
  border-color: var(--teal-600);
  box-shadow: 0 0 0 4px rgba(20,92,80,0.09);
}
textarea { resize: vertical; min-height: 140px; }
.contact-form .btn-primary { align-self: flex-start; margin-top: 4px; }

/* ════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════ */
.site-footer {
  background: #0D2340;
  color: #fff;
  padding: 60px 0 36px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-name {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}
.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  max-width: 280px;
  line-height: 1.6;
}
.footer-links {
  display: flex;
  gap: 28px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  flex-wrap: wrap;
  align-items: center;
}
.footer-links a:hover { color: #fff; }
.footer-bottom {
  font-size: 13px;
  color: rgba(255,255,255,0.30);
}

/* ════════════════════════════════════════════════
   RESPONSIVE — Tablet
════════════════════════════════════════════════ */
@media (max-width: 960px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 72px;
    left: 16px;
    right: 16px;
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-md);
    padding: 16px;
    box-shadow: var(--shadow-lg);
    display: none;
    gap: 4px;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    padding: 12px 16px;
    border-radius: var(--radius-sm);
  }
  .nav-links a:hover { background: var(--gray-50); }
  .nav-cta {
    text-align: center;
    margin-top: 8px;
    padding: 14px 22px !important;
  }

  .intro-grid,
  .sprint-inner,
  .cred-inner { grid-template-columns: 1fr; gap: 52px; }

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

  .steps-grid { flex-direction: column; gap: 12px; }
  .step-arrow { display: none; }

  .hero-stat { padding: 0 28px; }

  .footer-top { flex-direction: column; gap: 32px; }
}

/* ════════════════════════════════════════════════
   RESPONSIVE — Mobile
════════════════════════════════════════════════ */
@media (max-width: 620px) {
  .section { padding: 68px 0; }

  .hero { padding: 72px 0 64px; }
  .hero-sub { font-size: 17px; }
  .hero-badge { font-size: 11px; padding: 8px 16px; }

  .hero-stats { flex-direction: column; gap: 28px; }
  .hero-stat { padding: 0; }
  .hero-stat strong { font-size: 28px; }
  .hero-stat-div { width: 48px; height: 1px; }

  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }

  .form-row { grid-template-columns: 1fr; }
  .contact-card { padding: 36px 28px; }

  .contact-form .btn-primary { width: 100%; }

  .footer-links { gap: 16px; }
}
