/* =============================================
   INNOR INNOVATIONS — GLOBAL STYLES
   ============================================= */

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

:root {
  --navy:     #0d2137;
  --blue:     #1a56db;
  --blue-lt:  #3b7ef8;
  --gold:     #d4a432;
  --bg:       #ffffff;
  --surface:  #f5f8ff;
  --border:   #e2e8f0;
  --text:     #1a202c;
  --muted:    #64748b;
  --radius:   8px;
  --shadow:   0 4px 24px rgba(13,33,55,.10);
  --trans:    all .25s ease;
  --maxw:     1160px;
  --font:     'Segoe UI', system-ui, -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  font-size: 16px;
}

a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-lt); }

img { max-width: 100%; display: block; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.section { padding: 80px 0; }
.section--alt { background: var(--surface); }

.section__label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
  display: block;
}

.section__title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 16px;
}

.section__sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 600px;
}

.divider {
  width: 48px; height: 4px;
  background: var(--gold);
  border-radius: 2px;
  margin: 16px 0 32px;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  transition: var(--trans);
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}
.btn-primary:hover {
  background: var(--blue-lt);
  border-color: var(--blue-lt);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26,86,219,.3);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: #fff;
  transform: translateY(-2px);
}
.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.7);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.15);
  color: #fff;
  border-color: #fff;
}

/* =============================================
   NAVIGATION
   ============================================= */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.navbar__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.navbar__logo-mark {
  width: 38px;
  height: 38px;
  background: var(--navy);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: -.5px;
  flex-shrink: 0;
}

.navbar__brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.navbar__brand-name { font-weight: 700; font-size: 1rem; color: var(--navy); }
.navbar__brand-tagline { font-size: .7rem; color: var(--muted); letter-spacing: .04em; }

.navbar__links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.navbar__links a {
  color: var(--text);
  font-size: .92rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 6px;
  transition: var(--trans);
}
.navbar__links a:hover,
.navbar__links a.active {
  color: var(--blue);
  background: rgba(26,86,219,.07);
}

.navbar__cta { margin-left: 12px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--trans);
}

/* =============================================
   HERO
   ============================================= */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a5c 60%, #1a4a8a 100%);
  color: #fff;
  padding: 100px 0 90px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 60L60 0' stroke='rgba(255,255,255,.04)' stroke-width='1'/%3E%3C/svg%3E") repeat;
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.hero__eyebrow::before {
  content: '';
  display: block;
  width: 24px; height: 2px;
  background: var(--gold);
  border-radius: 1px;
}

.hero__title {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -.02em;
}

.hero__title em {
  font-style: normal;
  color: var(--gold);
}

.hero__desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,.8);
  max-width: 480px;
  margin-bottom: 36px;
}

.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}

.stat-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 20px;
  backdrop-filter: blur(8px);
}
.stat-card__number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-card__label {
  font-size: .82rem;
  color: rgba(255,255,255,.7);
  line-height: 1.4;
}

.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__badge {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 16px;
  padding: 36px;
  backdrop-filter: blur(10px);
  text-align: center;
  width: 320px;
}
.hero__badge-icon {
  font-size: 3.5rem;
  margin-bottom: 16px;
  line-height: 1;
}
.hero__badge-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.hero__badge-role {
  font-size: .88rem;
  color: rgba(255,255,255,.7);
  margin-bottom: 20px;
  line-height: 1.5;
}
.hero__badge-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
}
.badge-tag {
  font-size: .72rem;
  font-weight: 600;
  background: rgba(212,164,50,.2);
  color: var(--gold);
  border: 1px solid rgba(212,164,50,.4);
  border-radius: 100px;
  padding: 3px 10px;
}

/* =============================================
   SERVICES GRID
   ============================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 28px;
  transition: var(--trans);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--blue-lt));
  opacity: 0;
  transition: var(--trans);
}
.service-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.service-card:hover::before { opacity: 1; }

.service-card__icon {
  width: 52px; height: 52px;
  background: rgba(26,86,219,.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.service-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.service-card__desc {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.7;
}

/* =============================================
   EXPERTISE / TECH STACK
   ============================================= */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 14px;
  margin-top: 36px;
}
.tech-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy);
  transition: var(--trans);
}
.tech-pill:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: rgba(26,86,219,.04);
}
.tech-pill__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
}

/* =============================================
   EXPERIENCE TIMELINE
   ============================================= */
.timeline {
  position: relative;
  margin-top: 48px;
  padding-left: 28px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 8px; bottom: 0;
  width: 2px;
  background: var(--border);
}

.timeline__item {
  position: relative;
  padding-left: 32px;
  margin-bottom: 40px;
}
.timeline__item::before {
  content: '';
  position: absolute;
  left: -34px;
  top: 8px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--blue);
  border: 3px solid var(--bg);
  box-shadow: 0 0 0 2px var(--blue);
}

.timeline__date {
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--blue);
  margin-bottom: 6px;
}
.timeline__role {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}
.timeline__company {
  font-size: .9rem;
  color: var(--muted);
  margin-bottom: 8px;
}
.timeline__desc {
  font-size: .9rem;
  color: var(--text);
  line-height: 1.7;
}

/* =============================================
   CTA BANNER
   ============================================= */
.cta-banner {
  background: linear-gradient(135deg, var(--navy), #1a4a8a);
  color: #fff;
  padding: 72px 0;
  text-align: center;
}
.cta-banner__title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 14px;
  color: #fff;
}
.cta-banner__sub {
  color: rgba(255,255,255,.75);
  font-size: 1.05rem;
  margin-bottom: 32px;
}

/* =============================================
   CLIENTS / DOMAINS
   ============================================= */
.domain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 36px;
}
.domain-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: var(--trans);
}
.domain-card:hover { border-color: var(--blue); box-shadow: var(--shadow); }
.domain-card__icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.domain-card__title {
  font-size: .98rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.domain-card__desc { font-size: .85rem; color: var(--muted); }

/* =============================================
   CONTACT
   ============================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 52px;
  align-items: start;
  margin-top: 48px;
}

.contact-info__item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 28px;
}
.contact-info__icon {
  width: 44px; height: 44px;
  background: rgba(26,86,219,.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-info__label {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
  margin-bottom: 2px;
}
.contact-info__value { font-weight: 600; color: var(--navy); }

.contact-form { display: flex; flex-direction: column; gap: 18px; }

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: .85rem; font-weight: 600; color: var(--navy); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

input, textarea, select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: .92rem;
  color: var(--text);
  background: var(--bg);
  transition: var(--trans);
  outline: none;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,86,219,.12);
}
textarea { resize: vertical; min-height: 130px; }

.form-note {
  font-size: .8rem;
  color: var(--muted);
  margin-top: 4px;
}

/* =============================================
   CERTIFICATIONS
   ============================================= */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 36px;
}
.cert-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 22px;
  display: flex;
  gap: 14px;
  align-items: center;
  transition: var(--trans);
}
.cert-card:hover { border-color: var(--gold); box-shadow: var(--shadow); }
.cert-card__icon { font-size: 1.8rem; flex-shrink: 0; }
.cert-card__name { font-size: .95rem; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.cert-card__issuer { font-size: .8rem; color: var(--muted); }

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.page-hero {
  background: linear-gradient(135deg, var(--navy), #1a3a6e);
  color: #fff;
  padding: 64px 0 52px;
}
.page-hero__label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  display: block;
}
.page-hero__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 14px;
  color: #fff;
}
.page-hero__desc { color: rgba(255,255,255,.75); font-size: 1.05rem; max-width: 560px; }

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: center;
}
.about-avatar {
  background: linear-gradient(135deg, var(--navy), #1a4a8a);
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  color: #fff;
}
.about-avatar__initials {
  width: 96px; height: 96px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  border: 3px solid rgba(255,255,255,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  margin: 0 auto 20px;
}
.about-avatar__name { font-size: 1.2rem; font-weight: 700; margin-bottom: 4px; }
.about-avatar__role { font-size: .88rem; color: rgba(255,255,255,.7); margin-bottom: 20px; }
.about-avatar__tags { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; }
.about-tag {
  font-size: .72rem;
  font-weight: 600;
  background: rgba(212,164,50,.2);
  color: var(--gold);
  border: 1px solid rgba(212,164,50,.4);
  border-radius: 100px;
  padding: 4px 10px;
}

.about-content__lead {
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.8;
}
.about-content p { color: var(--muted); margin-bottom: 16px; line-height: 1.8; }

.key-facts { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
.key-fact {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.key-fact__check {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(26,86,219,.1);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 2px;
}
.key-fact__text { font-size: .92rem; color: var(--text); }

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,.7);
  padding: 56px 0 28px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer__logo-mark {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--gold);
}
.footer__brand-name { font-weight: 700; color: #fff; font-size: 1rem; }
.footer__desc { font-size: .88rem; line-height: 1.7; margin-bottom: 20px; }

.footer__heading {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 16px;
}
.footer__links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer__links a {
  color: rgba(255,255,255,.7);
  font-size: .88rem;
  transition: var(--trans);
}
.footer__links a:hover { color: var(--gold); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .82rem;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 960px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { display: none; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .domain-grid { grid-template-columns: 1fr; }
  .traits-grid { grid-template-columns: 1fr !important; }
}

@media (max-width: 640px) {
  .navbar__links { display: none; }
  .navbar__cta { display: none; }
  .hamburger { display: flex; }

  .navbar__links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px; left: 0; right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 12px 24px;
    gap: 2px;
    box-shadow: 0 8px 24px rgba(0,0,0,.1);
  }

  .services-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
  .hero__stats { grid-template-columns: 1fr 1fr; }
  .section { padding: 56px 0; }
}
