/* ══════════════════════════════════════════
   WSIC — We Support IT Consultants Ltd
   styles.css — Shared site styles
   ══════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Source+Serif+4:wght@400;600;700&display=swap');

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

:root {
  --dark: #1a2332;
  --grey: #5a6578;
  --light-grey: #7c8694;
  --border: #e5e7eb;
  --bg: #FAFAF8;
  --bg-alt: #f5f5f3;
  --bg-warm: #f8f7f5;
  --blue: #2563EB;
  --blue-light: #f0f4f8;
  --serif: 'Source Serif 4', Georgia, serif;
  --sans: 'Outfit', system-ui, -apple-system, sans-serif;
  --max-w: 920px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--dark);
  background: var(--bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

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

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 48px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(250,250,248,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.nav-left { display: flex; align-items: center; gap: 8px; text-decoration: none; }
.nav-name {
  font-family: var(--serif);
  font-weight: 700; font-size: 20px; color: var(--dark);
  letter-spacing: -0.3px;
}
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-link {
  font-size: 15px; font-weight: 450; color: var(--grey);
  text-decoration: none; transition: color 0.2s;
}
.nav-link:hover, .nav-link.active { color: var(--dark); }
.nav-phone {
  font-size: 15px; font-weight: 500; color: var(--dark);
  letter-spacing: 0.2px; text-decoration: none;
}
.nav-cta {
  background: var(--dark); color: #fff;
  padding: 10px 22px; border-radius: 6px;
  font-weight: 500; font-size: 14px;
  text-decoration: none; transition: background 0.2s;
  font-family: var(--sans);
}
.nav-cta:hover { background: #2a3545; color: #fff; }

.hamburger {
  display: none; background: none; border: none;
  font-size: 24px; cursor: pointer; color: var(--dark);
}

.mobile-menu {
  display: none; position: fixed; top: 62px; left: 0; right: 0;
  background: rgba(250,250,248,0.98); backdrop-filter: blur(16px);
  padding: 20px 48px; z-index: 99;
  flex-direction: column; gap: 12px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--grey); font-size: 16px; font-weight: 450;
  text-decoration: none; padding: 8px 0; display: block;
}
.mobile-menu a:last-child { font-weight: 600; color: var(--dark); }

/* ── PAGE HEADER ── */
.page-header {
  padding: 140px 48px 64px;
  max-width: var(--max-w);
}
.page-header-tag {
  font-size: 13px; font-weight: 600; color: var(--blue);
  text-transform: uppercase; letter-spacing: 2px; margin-bottom: 16px;
}
.page-header h1 {
  font-family: var(--serif);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700; letter-spacing: -1.5px;
  line-height: 1.1; margin-bottom: 20px;
}
.page-header h1 em { font-style: normal; color: var(--blue); }
.page-header-sub {
  font-size: 18px; color: var(--grey);
  line-height: 1.7; max-width: 600px;
}

/* ── HERO (home only) ── */
.hero { padding: 160px 48px 100px; max-width: var(--max-w); }
.hero-tag {
  font-size: 14px; font-weight: 500; color: var(--light-grey);
  margin-bottom: 24px;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 700; line-height: 1.08;
  letter-spacing: -1.5px; margin-bottom: 24px;
}
.hero h1 em { font-style: normal; color: var(--blue); }
.hero-sub {
  font-size: 19px; color: var(--grey);
  line-height: 1.7; max-width: 600px; margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ── BUTTONS ── */
.btn-dark {
  display: inline-block; background: var(--dark); color: #fff;
  padding: 14px 32px; border-radius: 8px;
  font-weight: 600; font-size: 16px;
  font-family: var(--sans); text-decoration: none;
  transition: all 0.2s; border: none; cursor: pointer;
}
.btn-dark:hover { background: #2a3545; color: #fff; transform: translateY(-1px); }
.btn-ghost {
  display: inline-block; background: none; color: var(--dark);
  border: 1px solid #d0d5dd;
  padding: 14px 32px; border-radius: 8px;
  font-weight: 500; font-size: 16px;
  font-family: var(--sans); text-decoration: none;
  transition: all 0.2s; cursor: pointer;
}
.btn-ghost:hover { border-color: var(--dark); }

/* ── TRUST LINE ── */
.trust-line {
  padding: 0 48px 80px; max-width: var(--max-w);
  display: flex; gap: 40px; flex-wrap: wrap; align-items: baseline;
}
.trust-label {
  font-size: 13px; color: #a0a8b4; font-weight: 400; font-style: italic;
  align-self: center;
}
.trust-client { display: flex; flex-direction: column; }
.trust-since {
  font-family: var(--serif); font-size: 32px; font-weight: 700;
  color: var(--dark); letter-spacing: -0.5px; line-height: 1;
}
.trust-name { font-size: 13px; color: var(--light-grey); font-weight: 500; margin-top: 6px; }

/* ── STATS STRIP ── */
.stats-strip {
  background: var(--dark); padding: 48px;
  display: flex; justify-content: center; gap: 56px; flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-value {
  font-family: var(--serif); font-size: 32px; font-weight: 700;
  color: #fff; letter-spacing: -1px; line-height: 1;
}
.stat-label {
  font-size: 12px; color: rgba(255,255,255,0.4); font-weight: 500;
  margin-top: 6px; text-transform: uppercase; letter-spacing: 1px;
}

/* ── DIVIDER ── */
.divider {
  max-width: var(--max-w); margin: 0 48px;
  height: 1px; background: var(--border);
}

/* ── SECTION ── */
.section {
  padding: 80px 48px;
  max-width: var(--max-w);
}
.section h2 {
  font-family: var(--serif);
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 700; letter-spacing: -0.8px;
  line-height: 1.2; margin-bottom: 16px;
}
.section-intro {
  font-size: 17px; color: var(--grey); line-height: 1.7;
  max-width: 580px; margin-bottom: 48px;
}
.section-tag {
  font-size: 13px; font-weight: 600; color: var(--blue);
  text-transform: uppercase; letter-spacing: 2px; margin-bottom: 16px;
}

/* ── SERVICE ROWS ── */
.services-list { display: flex; flex-direction: column; }
.service-row {
  display: grid; grid-template-columns: 200px 1fr; gap: 24px;
  padding: 28px 0; border-top: 1px solid var(--border);
  align-items: baseline;
}
.service-row:last-child { border-bottom: 1px solid var(--border); }
.service-label { font-weight: 600; font-size: 16px; color: var(--dark); letter-spacing: -0.2px; }
.service-text { font-size: 15px; color: var(--grey); line-height: 1.65; }
.service-tags { font-size: 13px; color: #9ca3af; }

/* ── PRICING ── */
.pricing-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center;
}
.pricing-card {
  padding: 24px 28px; background: var(--bg-warm);
  border-radius: 8px; border: 1px solid var(--border);
}
.pricing-card-tag {
  font-size: 13px; font-weight: 600; color: var(--light-grey);
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px;
}
.pricing-value {
  font-family: var(--serif); font-size: 36px; font-weight: 700;
  color: var(--dark);
}
.pricing-unit { font-size: 15px; color: var(--light-grey); }
.pricing-desc {
  font-size: 14px; color: var(--light-grey); margin-top: 8px; line-height: 1.5;
}

/* ── ABOUT GRID ── */
.about-grid {
  display: grid; grid-template-columns: 280px 1fr;
  gap: 56px; align-items: start;
}
.about-photo {
  width: 100%; aspect-ratio: 3/4; border-radius: 8px;
  background: #e8eaed; display: flex; align-items: flex-end;
  justify-content: center; padding-bottom: 20px;
  font-size: 13px; color: #9ca3af; font-style: italic;
  overflow: hidden;
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-text p {
  font-size: 17px; color: var(--grey); line-height: 1.75; margin-bottom: 20px;
}
.about-text strong { color: var(--dark); font-weight: 600; }

/* ── INLINE QUOTE ── */
.inline-quote {
  margin-top: 32px; padding: 20px 24px; background: #fff;
  border-left: 3px solid var(--blue); border-radius: 0 6px 6px 0;
  font-size: 15px; color: var(--grey); line-height: 1.65; font-style: italic;
}
.inline-quote-author {
  font-style: normal; font-weight: 600; color: var(--dark);
  margin-top: 8px; font-size: 13px;
}

/* ── PARTNERS ── */
.partners-bar {
  background: var(--bg-alt); padding: 48px;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.partners-label {
  font-size: 12px; font-weight: 600; color: #9ca3af;
  text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 24px;
}
.partners-grid {
  display: flex; gap: 20px; flex-wrap: wrap;
}
.partner-badge {
  background: #fff; border: 1px solid var(--border); border-radius: 8px;
  padding: 16px 24px; display: flex; align-items: center; gap: 12px;
  min-width: 150px;
}
.partner-dot {
  width: 36px; height: 36px; border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: #fff;
  font-family: var(--serif); flex-shrink: 0;
}
.partner-name { font-size: 15px; font-weight: 600; color: var(--dark); line-height: 1.2; }
.partner-sub { font-size: 12px; color: var(--light-grey); font-weight: 500; }

/* ── HOW IT WORKS ── */
.how-section { background: var(--dark); padding: 80px 48px; color: #fff; }
.how-inner { max-width: var(--max-w); }
.how-section h2 {
  font-family: var(--serif); font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 700; letter-spacing: -0.8px; margin-bottom: 16px; line-height: 1.2;
}
.how-sub { font-size: 17px; color: rgba(255,255,255,0.5); line-height: 1.7; max-width: 520px; margin-bottom: 48px; }
.how-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 40px; }
.how-step-num {
  font-family: var(--serif); font-size: 48px; font-weight: 700;
  color: rgba(255,255,255,0.08); line-height: 1; margin-bottom: 12px;
}
.how-step-title { font-size: 17px; font-weight: 600; margin-bottom: 8px; }
.how-step-text { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.65; }

/* ── AI CALLOUT ── */
.ai-callout {
  padding: 64px 48px; max-width: var(--max-w);
  background: var(--blue-light);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.ai-callout-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center;
}
.ai-point {
  display: flex; align-items: baseline; gap: 12px; margin-bottom: 16px;
}
.ai-arrow {
  font-size: 20px; font-weight: 700; color: var(--dark);
  font-family: var(--serif); min-width: 28px;
}
.ai-point-title { font-size: 15px; font-weight: 600; color: var(--dark); }
.ai-point-sub { font-size: 14px; color: var(--light-grey); margin-top: 2px; }

/* ── SLA TABLE ── */
.sla-table { width: 100%; border-collapse: collapse; }
.sla-table th {
  text-align: left; font-size: 12px; color: #9ca3af;
  text-transform: uppercase; letter-spacing: 1px; font-weight: 500;
  padding: 0 0 12px; border-bottom: 2px solid var(--border);
}
.sla-table td {
  padding: 16px 0; border-bottom: 1px solid #f0f1f3;
  font-size: 15px; color: var(--grey);
}
.sla-table td:first-child { font-weight: 600; color: var(--dark); }

/* ── INSIGHTS CARDS ── */
.insights-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.insight-card {
  padding: 24px; background: var(--bg-warm); border-radius: 8px;
  border: 1px solid var(--border); transition: border-color 0.2s;
}
.insight-card:hover { border-color: var(--blue); }
.insight-tag {
  font-size: 12px; font-weight: 600; color: var(--blue);
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px;
}
.insight-title {
  font-family: var(--serif); font-size: 18px; font-weight: 600;
  color: var(--dark); line-height: 1.35; margin-bottom: 16px; letter-spacing: -0.3px;
}
.insight-date { font-size: 13px; color: #9ca3af; font-style: italic; }

/* ── CONTACT ── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: start;
}
.contact-line {
  font-size: 16px; color: var(--grey); padding: 8px 0; line-height: 1.5;
}
.contact-line strong {
  color: var(--dark); font-weight: 600; display: block;
  font-size: 13px; text-transform: uppercase; letter-spacing: 0.5px;
  margin-bottom: 2px;
}

/* ── FORMS ── */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block; font-size: 14px; font-weight: 500;
  color: var(--dark); margin-bottom: 6px;
}
.form-input {
  width: 100%; border: 1px solid #d0d5dd; border-radius: 6px;
  padding: 12px 14px; font-family: var(--sans); font-size: 15px;
  color: var(--dark); outline: none; transition: border-color 0.2s;
  background: #fff;
}
.form-input:focus { border-color: var(--blue); }
.form-input::placeholder { color: #b0b8c4; }
textarea.form-input { min-height: 110px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit {
  background: var(--dark); color: #fff; border: none;
  padding: 14px 32px; border-radius: 6px;
  font-family: var(--sans); font-weight: 600; font-size: 15px;
  cursor: pointer; transition: background 0.2s;
}
.form-submit:hover { background: #2a3545; }
.form-success {
  padding: 48px 0; font-size: 18px; font-weight: 600; color: #059669;
}

/* ── LOCATIONS ── */
.locations-strip {
  padding: 48px; border-top: 1px solid var(--border); max-width: var(--max-w);
}
.locations-strip p { font-size: 15px; color: var(--light-grey); line-height: 1.8; }
.locations-strip span { color: var(--dark); font-weight: 500; }

/* ── SECTOR PAGE ── */
.sector-benefits {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin: 40px 0;
}
.sector-benefit {
  padding: 24px; background: var(--bg-warm);
  border-radius: 8px; border: 1px solid var(--border);
}
.sector-benefit-title {
  font-weight: 600; font-size: 16px; margin-bottom: 8px; color: var(--dark);
}
.sector-benefit-text { font-size: 15px; color: var(--grey); line-height: 1.6; }

/* ── FOOTER ── */
.footer {
  padding: 40px 48px;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
  font-size: 13px; color: #9ca3af;
}
.footer a { color: var(--light-grey); }
.footer a:hover { color: var(--dark); }

/* ══ RESPONSIVE ══ */
@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .nav-links { display: none; }
  .hamburger { display: block; }
  .mobile-menu { padding: 16px 24px; }

  .hero, .page-header { padding-left: 24px; padding-right: 24px; }
  .hero { padding-top: 120px; padding-bottom: 64px; }
  .page-header { padding-top: 100px; }
  .hero h1 { letter-spacing: -1px; }

  .trust-line { padding: 0 24px 64px; gap: 32px; }
  .divider { margin: 0 24px; }
  .section { padding: 64px 24px; }
  .stats-strip { gap: 32px; padding: 32px 24px; }
  .stat-value { font-size: 28px; }

  .service-row { grid-template-columns: 1fr; gap: 6px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-photo { aspect-ratio: 16/9; max-width: 280px; }
  .ai-callout { padding: 48px 24px; }
  .ai-callout-grid { grid-template-columns: 1fr; }

  .how-section { padding: 64px 24px; }
  .how-grid { grid-template-columns: 1fr; gap: 32px; }

  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }

  .partners-bar { padding: 32px 24px; }
  .sector-benefits { grid-template-columns: 1fr; }

  .locations-strip { padding: 32px 24px; }
  .footer { padding: 32px 24px; flex-direction: column; text-align: center; }
}
