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

:root {
  --navy:    #0C1C2E;
  --blue:    #133A5E;
  --gold:    #C8973E;
  --gold-lt: #E4B96A;
  --white:   #F4F4F0;
  --gray:    #8A9BB0;
  --text:    #1A1A1A;
  --card-bg: #F0F2F5;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
}

nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; height: 64px;
  background: rgba(12, 28, 46, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(200,151,62,0.25);
}
.nav-logo { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1.25rem; letter-spacing: 0.06em; color: var(--white); }
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray); text-decoration: none; transition: color .2s; }
.nav-links a:hover { color: var(--gold); }
.nav-cta { background: var(--gold); color: var(--navy); border: none; padding: 8px 20px; font-family: 'Inter', sans-serif; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer; transition: background .2s; }
.nav-cta:hover { background: var(--gold-lt); }

.hero { min-height: 100vh; background: var(--navy); display: flex; flex-direction: column; justify-content: center; padding: 120px 48px 80px; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: 0; right: 0; width: 55%; height: 100%; background: linear-gradient(135deg, transparent 40%, rgba(19,58,94,0.6) 100%); }
.hero-grid { display: block; max-width: 1200px; }
.hero-eyebrow { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; display: flex; align-items: center; gap: 12px; }
.hero-eyebrow::before { content: ''; display: block; width: 32px; height: 1px; background: var(--gold); }
.hero h1 { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(3rem, 6vw, 5.5rem); font-weight: 800; line-height: 0.95; color: var(--white); letter-spacing: -0.01em; text-transform: uppercase; margin-bottom: 24px; }
.hero h1 em { color: var(--gold); font-style: normal; }
.hero-sub { font-size: 0.95rem; line-height: 1.7; color: var(--gray); max-width: 440px; margin-bottom: 40px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary { background: var(--gold); color: var(--navy); padding: 14px 32px; font-weight: 600; font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; border: none; cursor: pointer; transition: background .2s; text-decoration: none; display: inline-block; }
.btn-primary:hover { background: var(--gold-lt); }
.btn-outline { border: 1px solid rgba(255,255,255,0.3); color: var(--white); padding: 14px 32px; font-weight: 500; font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; background: transparent; cursor: pointer; transition: border-color .2s; text-decoration: none; display: inline-block; }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.hero-right { display: none; }
.credential-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(200,151,62,0.2); padding: 20px 24px; display: flex; align-items: flex-start; gap: 16px; transition: border-color .2s; }
.credential-card:hover { border-color: rgba(200,151,62,0.5); }
.cred-icon { font-size: 1.4rem; width: 40px; text-align: center; flex-shrink: 0; }
.cred-label { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.cred-title { font-family: 'Barlow Condensed', sans-serif; font-size: 1.05rem; font-weight: 600; color: var(--white); line-height: 1.2; }
.cred-desc { font-size: 0.75rem; color: var(--gray); margin-top: 2px; line-height: 1.5; }

.stats-bar { background: var(--gold); display: flex; justify-content: space-around; flex-wrap: wrap; padding: 20px 48px; }
.stat-item { text-align: center; padding: 8px 16px; }
.stat-num { font-family: 'Barlow Condensed', sans-serif; font-size: 2rem; font-weight: 800; color: var(--navy); line-height: 1; }
.stat-label { font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--navy); opacity: 0.7; margin-top: 2px; }

.section { padding: 80px 48px; max-width: 1200px; margin: 0 auto; }
.section-eyebrow { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.section-eyebrow::after { content: ''; flex: 1; height: 1px; background: #ddd; }
.section h2 { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; text-transform: uppercase; letter-spacing: -0.01em; color: var(--navy); margin-bottom: 8px; line-height: 1.05; }
.section-sub { font-size: 0.9rem; color: #666; max-width: 520px; line-height: 1.7; margin-bottom: 48px; }

.solutions-bg { background: #F0F2F5; }
.solutions-wrap { padding: 80px 48px; max-width: 1200px; margin: 0 auto; }
.solutions-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.solution-card { background: var(--white); padding: 36px 32px; border-bottom: 3px solid transparent; transition: border-color .25s, transform .2s; cursor: pointer; text-decoration: none; display: block; }
.solution-card:hover { border-color: var(--gold); transform: translateY(-2px); }
.solution-img { width: 100%; height: 180px; object-fit: cover; margin-bottom: 16px; }
.solution-icon { font-size: 2rem; margin-bottom: 16px; }
.solution-sector { font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.solution-card h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.4rem; font-weight: 700; text-transform: uppercase; color: var(--navy); margin-bottom: 10px; line-height: 1.1; }
.solution-card p { font-size: 0.82rem; color: #555; line-height: 1.7; }
.solution-tag { display: inline-block; margin-top: 14px; background: rgba(200,151,62,0.1); color: var(--gold); font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 10px; }

.projects-section { background: var(--navy); }
.projects-wrap { padding: 80px 48px; max-width: 1200px; margin: 0 auto; }
.projects-wrap .section-eyebrow { color: var(--gold-lt); }
.projects-wrap .section-eyebrow::after { background: rgba(255,255,255,0.15); }
.projects-wrap h2 { color: var(--white); }
.projects-wrap .section-sub { color: var(--gray); }
.projects-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; }
.project-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07); padding: 32px; transition: background .2s, border-color .2s; }
.project-card:hover { background: rgba(200,151,62,0.07); border-color: rgba(200,151,62,0.3); }
.project-flag { font-size: 0.7rem; font-weight: 800; letter-spacing: 0.15em; background: var(--gold); color: var(--navy); display: inline-block; padding: 4px 10px; margin-bottom: 12px; }
.project-country { font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.project-card h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.25rem; font-weight: 700; text-transform: uppercase; color: var(--white); margin-bottom: 10px; }
.project-card p { font-size: 0.8rem; color: var(--gray); line-height: 1.7; }
.project-pills { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
.pill { font-size: 0.6rem; letter-spacing: 0.08em; text-transform: uppercase; padding: 3px 10px; border: 1px solid rgba(200,151,62,0.35); color: var(--gold-lt); }

.press-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.press-card { border-top: 2px solid var(--gold); padding: 20px 0; }
.press-source { font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.press-card h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--navy); line-height: 1.2; margin-bottom: 8px; }
.press-card p { font-size: 0.78rem; color: #666; line-height: 1.65; }

.contact-section { background: linear-gradient(135deg, var(--navy) 60%, var(--blue) 100%); padding: 80px 48px; text-align: center; }
.contact-section .section-eyebrow { justify-content: center; color: var(--gold-lt); }
.contact-section .section-eyebrow::after, .contact-section .section-eyebrow::before { content: ''; width: 40px; height: 1px; background: rgba(255,255,255,0.2); }
.contact-section h2 { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 800; text-transform: uppercase; color: var(--white); line-height: 1; margin-bottom: 16px; }
.contact-section h2 em { color: var(--gold); font-style: normal; }
.contact-section p { color: var(--gray); font-size: 0.9rem; max-width: 500px; margin: 0 auto 40px; line-height: 1.7; }
.contact-grid { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; margin-bottom: 40px; }
.contact-item { text-align: center; }
.contact-item-label { font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.contact-item-value { font-size: 0.85rem; color: var(--white); }
.contact-divider { width: 1px; background: rgba(255,255,255,0.15); align-self: stretch; }

footer { background: #060e18; padding: 24px 48px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-logo { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1rem; letter-spacing: 0.06em; color: var(--white); }
.footer-logo span { color: var(--gold); }
.footer-copy { font-size: 0.7rem; color: #445; letter-spacing: 0.05em; }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 0.7rem; color: #556; text-decoration: none; letter-spacing: 0.08em; text-transform: uppercase; transition: color .2s; }
.footer-links a:hover { color: var(--gold); }

@media (max-width: 900px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .hero { padding: 100px 20px 60px; }
  .hero-grid { display: block !important; }
  .hero-slideshow { height: 240px !important; margin-top: 24px; }
  .hero-right { display: none; }
  .hero-right-img { margin-top: 24px; }
  .hero-right-img img { width: 100% !important; height: auto !important; }
  .stats-bar { padding: 16px 20px; }
  .solutions-wrap, .section, .projects-wrap { padding: 60px 20px; }
  .solutions-grid, .projects-grid { grid-template-columns: 1fr !important; }
  .press-grid { grid-template-columns: 1fr !important; }
  .contact-section { padding: 60px 20px; }
  footer { padding: 20px; flex-direction: column; text-align: center; }
  body { overflow-x: hidden; }
  h1 { font-size: 2.4rem !important; }
  .hero-sub { max-width: 100% !important; }
}
.hero-left, .hero-right-img { width: 100% !important; max-width: 100% !important; }
  .hero h1, .hero-sub, .section-sub, p { max-width: 100% !important; word-wrap: break-word; overflow-wrap: break-word; }
  img { max-width: 100% !important; height: auto !important; }
  * { box-sizing: border-box; }