/* ===================================================
   WIZCALE — STYLES.CSS
   Color palette:
     Navy:  #050A30
     Blue:  #4F5FFF
     Green: #5EB229
     Light: #F4F6FC
     White: #FFFFFF
   =================================================== */

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  color: #1a1a2e;
  background: #fff;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: 'Montserrat', sans-serif; line-height: 1.2; }

/* ---- CONTAINERS ---- */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn-primary { background: #4F5FFF; color: #fff; border: 2px solid #4F5FFF; }
.btn-primary:hover { background: #3a4de0; border-color: #3a4de0; }
.btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.7); }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.btn-outline-dark {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  background: transparent;
  color: #050A30;
  border: 2px solid #050A30;
  transition: all 0.2s ease;
}
.btn-outline-dark:hover { background: #050A30; color: #fff; }

/* ---- SECTION HELPERS ---- */
.section-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #5EB229;
  margin-bottom: 12px;
  display: block;
}
.section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #050A30;
  margin-bottom: 16px;
}
.section-title.light { color: #fff; }
.section-sub {
  font-size: 1.05rem;
  color: #555;
  max-width: 680px;
  margin-bottom: 48px;
}
.section-sub.light { color: rgba(255,255,255,0.75); }

/* ===================================================
   NAVIGATION
   =================================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(5, 10, 48, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.3); }
.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo-img { height: 36px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links li a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  letter-spacing: 0.03em;
  transition: color 0.2s;
}
.nav-links li a:hover { color: #fff; }
.nav-cta {
  background: #4F5FFF !important;
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 4px;
  font-weight: 600 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: #3a4de0 !important; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===================================================
   HERO
   =================================================== */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #050A30 0%, #0d1660 60%, #1a2580 100%);
  display: flex;
  align-items: center;
  padding-top: 68px;
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(79,95,255,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  width: 100%;
}
.hero-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #5EB229;
  margin-bottom: 20px;
  display: block;
}
.hero-title {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 24px;
}
.hero-title-line1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
}
.hero-title-line2 {
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  line-height: 1.3;
}
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 40px;
  max-width: 480px;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-photo { position: relative; }
.hero-photo img {
  width: 100%;
  max-width: 480px;
  border-radius: 8px;
  object-fit: cover;
  object-position: top center;
  aspect-ratio: 4/5;
  box-shadow: 0 32px 80px rgba(0,0,0,0.4);
  margin-left: auto;
}

/* ===================================================
   INTRO / POV
   =================================================== */
.intro { background: #F4F6FC; padding: 80px 0; }
.intro-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.intro-quote { border-left: 4px solid #4F5FFF; padding-left: 28px; }
.intro-quote p {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 500;
  color: #050A30;
  line-height: 1.5;
  font-style: italic;
  margin-bottom: 16px;
}
.intro-attr {
  font-size: 0.85rem;
  font-weight: 600;
  color: #4F5FFF;
  font-style: normal;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.03em;
}
.intro-body p { font-size: 1.05rem; color: #333; margin-bottom: 16px; }
.intro-body p:last-child { margin-bottom: 0; }

/* ===================================================
   SERVICES
   =================================================== */
.services { padding: 100px 0; background: #fff; }
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.service-card {
  background: #F4F6FC;
  border-radius: 8px;
  padding: 40px 36px;
  border-top: 4px solid #4F5FFF;
  transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(5,10,48,0.1); }
.service-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #4F5FFF;
  margin-bottom: 16px;
}
.service-card h3 { font-size: 1.2rem; font-weight: 700; color: #050A30; margin-bottom: 14px; }
.service-card p { font-size: 0.95rem; color: #555; margin-bottom: 20px; line-height: 1.7; }
.service-list { list-style: none; padding: 0; }
.service-list li {
  font-size: 0.88rem;
  color: #444;
  padding: 6px 0 6px 20px;
  position: relative;
  border-bottom: 1px solid rgba(5,10,48,0.06);
}
.service-list li:last-child { border-bottom: none; }
.service-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 8px; height: 8px;
  background: #5EB229;
  border-radius: 50%;
}

/* ===================================================
   TRACK RECORD
   =================================================== */
.work { padding: 100px 0; }
.section-navy { background: #050A30; }
.cases-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.case-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 36px 32px;
  transition: background 0.2s;
}
.case-card:hover { background: rgba(255,255,255,0.08); }
.case-tag {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.tag-strategy  { background: rgba(79,95,255,0.2);  color: #8a97ff; }
.tag-delivery  { background: rgba(94,178,41,0.2);  color: #7ed44a; }
.tag-transformation { background: rgba(255,165,0,0.2); color: #ffb347; }
.tag-governance { background: rgba(255,80,80,0.2); color: #ff8080; }
.case-title { font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: 20px; }
.case-row { margin-bottom: 14px; }
.case-label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #5EB229;
  margin-bottom: 4px;
}
.case-row p { font-size: 0.9rem; color: rgba(255,255,255,0.75); line-height: 1.65; }

/* ===================================================
   ABOUT
   =================================================== */
.about { padding: 100px 0; background: #fff; }
.about-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 72px; align-items: start; }
.about-photo img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  object-position: top center;
  aspect-ratio: 3/4;
  box-shadow: 0 20px 60px rgba(5,10,48,0.15);
}
.about-name { font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 800; color: #050A30; margin-bottom: 6px; }
.about-role { font-size: 0.95rem; font-weight: 600; color: #4F5FFF; margin-bottom: 24px; font-family: 'Montserrat', sans-serif; }
.about-text p { font-size: 1rem; color: #444; margin-bottom: 16px; line-height: 1.75; }
.about-credentials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 28px 0 32px;
  padding: 24px;
  background: #F4F6FC;
  border-radius: 8px;
}
.cred-block strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #050A30;
  margin-bottom: 8px;
}
.cred-block p { font-size: 0.88rem !important; color: #555 !important; margin-bottom: 0 !important; line-height: 1.6 !important; }

/* ===================================================
   IDEAL CLIENTS
   =================================================== */
.ideal-clients { padding: 100px 0; background: #F4F6FC; }
.ideal-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-top: 16px; }
.ideal-col h3 { font-size: 1.1rem; font-weight: 700; color: #050A30; margin-bottom: 20px; }
.check-list { list-style: none; padding: 0; }
.check-list li {
  font-size: 0.95rem;
  color: #444;
  padding: 10px 0 10px 28px;
  position: relative;
  border-bottom: 1px solid rgba(5,10,48,0.07);
  line-height: 1.6;
}
.check-list li:last-child { border-bottom: none; }
.check-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 16px;
  width: 14px; height: 14px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'%3E%3Ccircle cx='7' cy='7' r='7' fill='%235EB229'/%3E%3Cpath d='M4 7l2 2 4-4' stroke='white' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* ===================================================
   ENGAGEMENT MODELS
   =================================================== */
.engagement { padding: 100px 0; }
.section-light { background: #F4F6FC; }
.engagement-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.eng-card {
  background: #fff;
  border-radius: 8px;
  padding: 36px 28px;
  border-bottom: 4px solid #4F5FFF;
  box-shadow: 0 4px 24px rgba(5,10,48,0.07);
  transition: transform 0.2s;
}
.eng-card:hover { transform: translateY(-4px); }
.eng-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #4F5FFF;
  margin-bottom: 14px;
}
.eng-card h3 { font-size: 1.1rem; font-weight: 700; color: #050A30; margin-bottom: 12px; }
.eng-card p { font-size: 0.92rem; color: #555; line-height: 1.7; margin-bottom: 12px; }
.eng-detail { font-size: 0.82rem !important; color: #4F5FFF !important; font-weight: 600; font-family: 'Montserrat', sans-serif; }

/* ===================================================
   CONTACT
   =================================================== */
.contact { padding: 100px 0; background: linear-gradient(135deg, #050A30 0%, #0d1660 100%); }
.contact-inner { display: grid; grid-template-columns: 1.2fr 1fr; gap: 72px; align-items: center; }
.contact-text .section-eyebrow { color: #5EB229; }
.contact-text h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 800; color: #fff; margin-bottom: 16px; }
.contact-text > p { font-size: 1.05rem; color: rgba(255,255,255,0.75); margin-bottom: 32px; line-height: 1.7; }
.contact-links { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  transition: color 0.2s;
}
.contact-link:hover { color: #fff; }
.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  font-size: 0.9rem;
  font-weight: 700;
}
.contact-photo img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  object-position: top center;
  aspect-ratio: 4/5;
  box-shadow: 0 24px 64px rgba(0,0,0,0.4);
}

/* ===================================================
   FOOTER
   =================================================== */
.footer { background: #020718; padding: 48px 0 24px; }
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
}
.footer-logo { height: 32px; margin-bottom: 10px; }
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.45); }
.footer-links { display: flex; gap: 28px; flex-wrap: wrap; }
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  transition: color 0.2s;
}
.footer-links a:hover { color: #fff; }
.footer-bottom { padding-top: 20px; text-align: center; }
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.3); }

/* ===================================================
   RESPONSIVE — TABLET (max 900px)
   =================================================== */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; padding: 60px 24px; text-align: center; }
  .hero-photo { order: -1; }
  .hero-photo img { max-width: 320px; margin: 0 auto; aspect-ratio: 3/4; }
  .hero-btns { justify-content: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .intro-inner { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: 1fr; }
  .cases-grid { grid-template-columns: 1fr; }
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-photo img { max-width: 340px; aspect-ratio: 3/4; }
  .ideal-grid { grid-template-columns: 1fr; gap: 32px; }
  .engagement-grid { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .contact-photo { display: none; }
  .about-credentials { grid-template-columns: 1fr; }
}

/* ===================================================
   RESPONSIVE — MOBILE (max 600px)
   =================================================== */
@media (max-width: 600px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: #050A30;
    flex-direction: column;
    padding: 20px 24px 28px;
    gap: 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links li a { display: block; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.06); font-size: 0.95rem; }
  .nav-cta { margin-top: 12px; text-align: center; border-radius: 4px; }
  .hero-inner { padding: 48px 20px; }
  .hero-title-line1 { font-size: 1.7rem; }
  .hero-title-line2 { font-size: 1.2rem; }
  .hero-btns { flex-direction: column; align-items: center; }
  .btn { width: 100%; text-align: center; }
  .intro { padding: 60px 0; }
  .services { padding: 72px 0; }
  .work { padding: 72px 0; }
  .about { padding: 72px 0; }
  .ideal-clients { padding: 72px 0; }
  .engagement { padding: 72px 0; }
  .contact { padding: 72px 0; }
  .section-title { font-size: 1.6rem; }
  .section-sub { font-size: 0.95rem; }
  .service-card { padding: 28px 24px; }
  .case-card { padding: 28px 24px; }
  .eng-card { padding: 28px 24px; }
  .footer-inner { flex-direction: column; gap: 24px; }
  .footer-links { gap: 16px; }
}

/* ===================================================
   FADE-IN ANIMATION (JS-driven)
   =================================================== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Engagement card tagline */
.eng-tagline {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: #5EB229;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

/* Track Record Summary Statement */
.track-record-summary {
  margin-top: 48px;
  padding: 28px 32px;
  border-left: 4px solid #5EB229;
  background: rgba(255,255,255,0.05);
  border-radius: 0 8px 8px 0;
}
.track-record-summary p {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  line-height: 1.8;
  margin: 0;
}
