:root {
  --blue: #0d2840;
  --teal: #0d5c63;
  --teal-light: #167a82;
  --gold: #c9a227;
  --bg: #f8fafb;
  --white: #fff;
  --text: #2d3748;
  --muted: #64748b;
  --radius: 8px;
  --font: 'Plus Jakarta Sans', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
}

a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--teal-light); }

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

.container { max-width: 1000px; margin: 0 auto; padding: 0 1.25rem; }

/* Header */
.header {
  background: var(--white);
  border-bottom: 1px solid #e2e8f0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.logo-link { display: flex; align-items: center; }
.logo-link svg { height: 40px; width: auto; }

.nav { display: flex; align-items: center; gap: 1.5rem; list-style: none; }
.nav a { font-size: 0.9rem; font-weight: 500; color: var(--blue); }
.nav a:hover, .nav a.active { color: var(--teal); }

.btn {
  display: inline-block;
  padding: 0.65rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: 0.2s;
}

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

.btn-outline {
  background: transparent;
  color: var(--teal);
  border: 2px solid var(--teal);
}

.btn-outline:hover { background: var(--teal); color: var(--white); }

.menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--blue);
}

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--blue) 0%, var(--teal) 100%);
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
}

.hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.hero p {
  font-size: 1.05rem;
  opacity: 0.9;
  max-width: 520px;
  margin: 0 auto 1.5rem;
}

.hero-btns { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }
.hero-btns .btn-outline { color: var(--white); border-color: rgba(255,255,255,0.6); }
.hero-btns .btn-outline:hover { background: var(--white); color: var(--teal); }

/* Sections */
section { padding: 3rem 0; }
.section-title { font-size: 1.5rem; color: var(--blue); margin-bottom: 0.5rem; text-align: center; }
.section-sub { text-align: center; color: var(--muted); margin-bottom: 2rem; font-size: 0.95rem; }

/* Cards */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid #e2e8f0;
}

.card h3 { font-size: 1.1rem; color: var(--blue); margin-bottom: 0.5rem; }
.card p { font-size: 0.9rem; color: var(--muted); }

.sector-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

/* Page header */
.page-head {
  background: var(--blue);
  color: var(--white);
  padding: 3rem 0 2.5rem;
}

.page-head h1 { font-size: 1.75rem; margin-bottom: 0.5rem; }
.page-head p { opacity: 0.85; font-size: 1rem; }

/* Content */
.content { padding: 2.5rem 0 3rem; max-width: 720px; margin: 0 auto; }
.content h2 { font-size: 1.2rem; color: var(--blue); margin: 1.5rem 0 0.5rem; }
.content p, .content li { color: var(--muted); margin-bottom: 0.75rem; }
.content ul { margin-left: 1.25rem; }

.info-box {
  background: var(--white);
  border-left: 4px solid var(--teal);
  padding: 1rem 1.25rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 1.5rem 0;
  font-size: 0.9rem;
}

/* Form */
.form-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid #e2e8f0;
  max-width: 520px;
  margin: 0 auto;
}

.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 0.35rem; color: var(--blue); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.7rem;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
}

.form-group textarea { min-height: 120px; resize: vertical; }

/* Footer */
.footer {
  background: var(--blue);
  color: rgba(255,255,255,0.75);
  padding: 2.5rem 0 1.5rem;
  font-size: 0.85rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer h4 {
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.footer ul { list-style: none; }
.footer li { margin-bottom: 0.4rem; }
.footer a { color: rgba(255,255,255,0.7); }
.footer a:hover { color: var(--white); }

.footer-logo svg { height: 36px; margin-bottom: 0.75rem; }
.footer-logo svg text { fill: #fff !important; }
.footer-logo svg text:last-child { fill: var(--gold) !important; }
.footer-logo svg circle { fill: var(--teal-light); }

.footer-bottom {
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.15);
  text-align: center;
  font-size: 0.8rem;
}

/* Mobile */
@media (max-width: 768px) {
  .nav { display: none; }
  .nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #e2e8f0;
    align-items: flex-start;
  }
  .menu-btn { display: block; }
  .footer-grid { grid-template-columns: 1fr; }
}

.bg-white { background: var(--white); }
