@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,300&family=Poppins:wght@800&display=swap');

:root {
  --coral: #E05C3A;
  --amber: #F0A030;
  --ruby: #C0152A;
  --yellow: #F5D020;
  --dark: #0D0D0D;
  --dark2: #161616;
  --dark3: #1F1F1F;
  --dark4: #2A2A2A;
  --muted: #888;
  --light: #F5F2ED;
  --white: #FFFFFF;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--dark);
  color: var(--light);
  min-height: 100vh;
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(13,13,13,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(240,160,48,0.15);
  padding: 0 2rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo svg {
  width: 36px;
  height: 36px;
}

.nav-logo-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  background: linear-gradient(90deg, #E05C3A 0%, #F0A030 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
}

.nav-links a {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--muted);
  text-decoration: none;
  padding: 0.4rem 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--amber);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--light);
  transition: all 0.3s;
}

/* MOBILE NAV */
@media (max-width: 900px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 64px;
    left: 0; right: 0;
    background: var(--dark2);
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(240,160,48,0.15);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 0.75rem 2rem; width: 100%; }
  .nav-hamburger { display: flex; }
}

/* HERO */
.hero {
  padding-top: 64px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 70% 50%, rgba(224,92,58,0.08) 0%, transparent 70%),
              radial-gradient(ellipse 40% 40% at 30% 70%, rgba(192,21,42,0.06) 0%, transparent 60%);
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(240,160,48,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(240,160,48,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--amber);
}

.hero-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero-title .accent {
  color: var(--coral);
  display: block;
}

.hero-desc {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(245,242,237,0.65);
  margin-bottom: 2.5rem;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  font-family: 'Syne', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dark);
  background: var(--amber);
  border: none;
  padding: 0.9rem 2rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.btn-primary:hover {
  background: var(--coral);
  color: var(--white);
}

.btn-secondary {
  font-family: 'Syne', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--light);
  background: transparent;
  border: 1px solid rgba(245,242,237,0.2);
  padding: 0.9rem 2rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-secondary:hover {
  border-color: var(--amber);
  color: var(--amber);
}

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

.hero-logo-display svg {
  width: 320px;
  height: 320px;
  opacity: 0.9;
  filter: drop-shadow(0 0 40px rgba(224,92,58,0.2));
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

/* SECTORS GRID */
.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.section-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--amber);
}

.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 3rem;
  max-width: 600px;
}

.sectors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1px;
  background: rgba(240,160,48,0.1);
  border: 1px solid rgba(240,160,48,0.1);
}

.sector-card {
  background: var(--dark2);
  padding: 2rem 1.75rem;
  text-decoration: none;
  color: inherit;
  display: block;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
  group: true;
}

.sector-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  height: 2px;
  width: 0;
  background: var(--coral);
  transition: width 0.4s ease;
}

.sector-card:hover {
  background: var(--dark3);
}

.sector-card:hover::before {
  width: 100%;
}

.sector-icon {
  font-size: 1.8rem;
  margin-bottom: 1.25rem;
  display: block;
}

.sector-num {
  font-family: 'Syne', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--coral);
  margin-bottom: 0.5rem;
  opacity: 0.7;
}

.sector-name {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.sector-desc {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(245,242,237,0.5);
  line-height: 1.6;
}

.sector-arrow {
  position: absolute;
  top: 1.75rem;
  right: 1.75rem;
  color: var(--muted);
  font-size: 1.2rem;
  transition: all 0.3s;
  opacity: 0;
}

.sector-card:hover .sector-arrow {
  opacity: 1;
  color: var(--amber);
  transform: translate(3px, -3px);
}

/* DIVIDER */
.divider {
  border: none;
  border-top: 1px solid rgba(240,160,48,0.1);
  margin: 0 2rem;
}

/* FOOTER */
footer {
  background: var(--dark2);
  border-top: 1px solid rgba(240,160,48,0.12);
  padding: 3rem 2rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-brand svg { width: 28px; height: 28px; }

.footer-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  background: linear-gradient(90deg, #E05C3A 0%, #F0A030 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--muted);
}

/* SECTOR PAGE SPECIFIC */
.sector-hero {
  padding-top: 64px;
  min-height: 50vh;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
}

.sector-hero-bg {
  position: absolute;
  inset: 0;
}

.sector-hero-content {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem 3rem;
  width: 100%;
}

.sector-back {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  transition: color 0.2s;
}

.sector-back:hover { color: var(--amber); }

.sector-hero-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 1.5rem;
}

.sector-hero-lead {
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(245,242,237,0.6);
  max-width: 600px;
  line-height: 1.75;
}

.content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.content-body p {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(245,242,237,0.7);
  margin-bottom: 1.5rem;
}

.content-body h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin: 2.5rem 0 1rem;
}

.capabilities-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(240,160,48,0.12);
}

.capabilities-list li {
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 400;
  color: rgba(245,242,237,0.7);
  border-bottom: 1px solid rgba(240,160,48,0.08);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: background 0.2s, color 0.2s;
}

.capabilities-list li:last-child { border-bottom: none; }
.capabilities-list li:hover { background: var(--dark3); color: var(--white); }

.capabilities-list li::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  background: var(--coral);
  flex-shrink: 0;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.stat-card {
  background: var(--dark3);
  border: 1px solid rgba(240,160,48,0.12);
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* CONTACT STRIP */
.contact-strip {
  background: var(--dark3);
  border-top: 1px solid rgba(240,160,48,0.12);
  border-bottom: 1px solid rgba(240,160,48,0.12);
  padding: 4rem 2rem;
  text-align: center;
}

.contact-strip h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}

.contact-strip p {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(245,242,237,0.55);
  margin-bottom: 2rem;
}

/* ANIMATIONS */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.7s ease forwards;
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.fade-in-1 { animation-delay: 0.1s; }
.fade-in-2 { animation-delay: 0.25s; }
.fade-in-3 { animation-delay: 0.4s; }
.fade-in-4 { animation-delay: 0.55s; }

@media (max-width: 768px) {
  .hero-content { grid-template-columns: 1fr; gap: 2rem; }
  .hero-logo-display { display: none; }
  .content-grid { grid-template-columns: 1fr; }
}
