/* HAQM Consultancy — Brand System Styles */
/* ======================================== */

:root {
  --navy: #0F2B46;
  --navy-dark: #091B2E;
  --steel: #4A5568;
  --gold: #C9952C;
  --gold-dark: #B07D1F;
  --white: #FFFFFF;
  --bg: #F7F8FA;
  --divider: #E2E8F0;
  --charcoal: #1A202C;
  --slate: #718096;
  --light-muted: #CBD5E0;
}

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

body {
  font-family: 'Open Sans', 'Segoe UI', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--charcoal);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  color: var(--navy);
}

h1 { font-size: 42px; font-weight: 700; line-height: 1.2; margin-bottom: 16px; }
h2 { font-size: 32px; font-weight: 600; line-height: 1.3; margin-bottom: 16px; }
h3 { font-size: 20px; font-weight: 600; line-height: 1.4; margin-bottom: 8px; }
h4 { font-size: 17px; font-weight: 600; margin-bottom: 8px; }

p { margin-bottom: 16px; }

a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--gold); }

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

/* Sections */
.section { padding: 80px 0; }
.section-light { background: var(--bg); }
.section-dark { background: var(--navy); }
.section-sub { font-size: 18px; color: var(--steel); margin-bottom: 32px; }

/* Color variants for dark sections */
.section-dark h1, .section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark .section-sub { color: var(--light-muted); }
.section-dark .text-muted { color: var(--light-muted); }
.light { color: var(--white) !important; }

/* Typography */
.text-muted { color: var(--slate); }
.text-gold { color: var(--gold); }
.text-link { color: var(--gold); font-weight: 600; }
.text-link:hover { color: var(--gold-dark); }

/* Buttons */
.btn-primary {
  display: inline-block;
  background: var(--navy);
  color: var(--white) !important;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  padding: 14px 32px;
  border-radius: 4px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: background 0.2s;
}
.btn-primary:hover { background: var(--navy-dark); }

.btn-accent {
  display: inline-block;
  background: var(--gold);
  color: var(--white) !important;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  padding: 14px 32px;
  border-radius: 4px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: background 0.2s;
}
.btn-accent:hover { background: var(--gold-dark); }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  padding: 12px 30px;
  border-radius: 4px;
  text-decoration: none;
  cursor: pointer;
}
.btn-outline:hover { background: var(--navy); color: var(--white); }

.cta-block { margin-top: 40px; }

/* Navigation */
.top-nav {
  background: var(--navy);
  padding: 16px 0;
}
.top-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--white) !important;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 24px;
}
.nav-links a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--light-muted) !important;
  padding: 4px 0;
}
.nav-links a:hover, .nav-links .active { color: var(--gold) !important; }

/* Hero Banner */
.hero-banner {
  position: relative;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
}
.hero-banner h1 {
  color: var(--white);
  font-size: 44px;
  max-width: 800px;
  margin: 0 auto 24px;
}
.hero-sub {
  font-size: 20px;
  color: var(--light-muted);
  max-width: 650px;
  margin: 0 auto 16px;
  line-height: 1.6;
}
.hero-support {
  font-size: 16px;
  color: var(--light-muted);
  margin-bottom: 32px;
}

/* Grids */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 32px; }
.grid-4 { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 24px; }

/* Cards */
.card {
  background: var(--white);
  border-radius: 8px;
  padding: 32px;
  box-shadow: 0 2px 12px rgba(15, 43, 70, 0.06);
  border: 1px solid var(--divider);
}
.card h3 { margin-top: 0; }

/* Stat Components */
.stat-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--gold);
}
.stat-label { font-size: 15px; color: var(--steel); margin-top: 4px; }
.stat-highlight { margin: 32px 0; padding-left: 16px; border-left: 3px solid var(--gold); }
.stat-highlight .stat-label { font-size: 16px; }
.stat-card { text-align: center; padding: 24px; }
.stats { gap: 32px; }

/* Phase Tags */
.phase-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 3px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.phase-duration { font-size: 14px; color: var(--slate); margin-bottom: 8px; font-style: italic; }
.phase-card { border-top: 3px solid var(--gold); }

/* Icons */
.icon-box { font-size: 32px; margin-bottom: 12px; }

/* Check List */
.check-list { list-style: none; }
.check-list li { padding: 6px 0 6px 28px; position: relative; }
.check-list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* Deliverable List */
.deliverable-list { list-style: none; }
.deliverable-list li { padding: 8px 0; border-bottom: 1px solid var(--divider); }
.deliverable-list li:last-child { border-bottom: none; }

/* Image Placeholder */
.image-placeholder { display: flex; align-items: center; justify-content: center; }
.placeholder-box {
  width: 100%;
  min-height: 300px;
  background: var(--bg);
  border: 2px dashed var(--divider);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--slate);
  font-size: 14px;
  text-align: center;
  padding: 24px;
}

/* About */
.about-content { max-width: 720px; }
.about-content p { margin-bottom: 20px; font-size: 17px; }

/* Methodology */
.methodology-phase { max-width: 800px; }
.methodology-phase p { margin-bottom: 12px; }

/* Outcome Cards */
.outcome-card { border-left: 3px solid var(--gold); }

/* Service Cards */
.service-card { text-align: left; }
.service-card ul { list-style: none; margin: 16px 0 20px; }
.service-card ul li { padding: 4px 0 4px 20px; position: relative; font-size: 14px; color: var(--steel); }
.service-card ul li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 12px;
}

/* FAQ */
.faq { max-width: 800px; }
.faq details {
  border-bottom: 1px solid var(--divider);
  padding: 20px 0;
}
.faq details:first-child { border-top: 1px solid var(--divider); }
.faq summary {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 17px;
  cursor: pointer;
  outline: none;
}
.faq summary:hover { color: var(--gold); }
.faq details p { padding-top: 12px; color: var(--steel); }

/* Divider */
.divider { height: 1px; background: var(--divider); margin: 40px 0; }

/* CTA Section */
.cta-section { text-align: center; padding: 80px 24px; }
.cta-section h2 { margin-bottom: 16px; }
.cta-section .section-sub { max-width: 600px; margin: 0 auto 32px; }
.phone-link { color: var(--light-muted); font-size: 14px; margin-top: 16px; }

/* Form */
.contact-layout { align-items: start; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; }
.form-group label {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 4px;
  color: var(--navy);
}
.form-group input, .form-group select, .form-group textarea {
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  padding: 10px 12px;
  border: 1px solid var(--divider);
  border-radius: 4px;
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); }
.contact-form .btn-primary { align-self: flex-start; margin-top: 8px; font-size: 15px; padding: 12px 28px; }
.expect-list { padding-left: 24px; }
.expect-list li { margin-bottom: 12px; }

/* Footer */
.site-footer {
  background: var(--navy);
  color: var(--light-muted);
  padding: 60px 0 30px;
  font-size: 14px;
}
.site-footer h4 {
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  margin-bottom: 16px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-links ul { list-style: none; }
.footer-links ul li { margin-bottom: 8px; }
.footer-links ul li a { color: var(--light-muted); }
.footer-links ul li a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  text-align: center;
  font-size: 13px;
}

/* Mobile */
@media (max-width: 768px) {
  h1 { font-size: 30px; }
  h2 { font-size: 24px; }
  .hero-banner h1 { font-size: 30px; }
  .hero-sub { font-size: 17px; }
  .section { padding: 48px 16px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .top-nav .container { flex-direction: column; gap: 12px; }
  .nav-links { flex-wrap: wrap; justify-content: center; gap: 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
}
