/* ============================================================
   APRICUS CONSULTING GROUP — Main Stylesheet
   Version 1.0 | Junio 2026
   ============================================================ */

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  background: #fff;
  color: #00276A;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ── CSS VARIABLES ── */
:root {
  --navy:   #00276A;
  --orange: #FF8A00;
  --gray-1: #f8f9fb;
  --gray-2: #f0f2f6;
  --gray-3: #e0e4ed;
  --gray-4: #c0cce0;
  --text-muted: #888;
  --text-light: #bbb;
  --white: #fff;
  --black: #111;

  --nav-h: 68px;
  --max-w: 1200px;
  --pad-x: 40px;
  --pad-section: 72px;

  --transition: 0.2s ease;
  --shadow-sm: 0 2px 8px rgba(0,39,106,0.07);
  --shadow-md: 0 4px 20px rgba(0,39,106,0.10);
  --shadow-lg: 0 8px 32px rgba(0,39,106,0.14);
}

/* ── TYPOGRAPHY ── */
h1 { font-size: clamp(28px, 5vw, 48px); font-weight: 700; line-height: 1.08; }
h2 { font-size: clamp(22px, 3.5vw, 30px); font-weight: 700; line-height: 1.2; }
h3 { font-size: clamp(16px, 2vw, 20px); font-weight: 700; line-height: 1.3; }
p  { line-height: 1.7; }

.sec-label {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}

/* ── LAYOUT ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad-x); }
.section   { padding: var(--pad-section) var(--pad-x); }

/* ── NAV ── */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--pad-x);
  height: var(--nav-h);
  background: var(--white);
  border-bottom: 0.5px solid var(--gray-3);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-logo { height: 40px; width: auto; display: block; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 500;
  transition: color var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--orange); }
.nav-links a.active { border-bottom: 1.5px solid var(--orange); padding-bottom: 2px; }
.nav-cta {
  background: var(--orange);
  color: var(--white);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 9px 20px;
  font-weight: 600;
  border: none;
  transition: background var(--transition);
}
.nav-cta:hover { background: #e07800; }

/* hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 4px; }
.hamburger span { width: 22px; height: 2px; background: var(--navy); display: block; transition: all 0.3s; }

/* mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 200;
  flex-direction: column;
  padding: 60px 32px 40px;
  gap: 0;
}
.mobile-menu.open { display: flex; }
.mm-close {
  position: absolute; top: 18px; right: 24px;
  background: none; border: none; color: var(--white);
  font-size: 28px; cursor: pointer; font-weight: 300;
}
.mm-link {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  padding: 18px 0;
  border-bottom: 0.5px solid rgba(255,255,255,0.12);
  transition: color var(--transition);
}
.mm-link:hover, .mm-link.active { color: var(--orange); }
.mm-cta {
  background: var(--orange);
  color: var(--white);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 14px;
  font-weight: 600;
  border: none;
  margin-top: 32px;
  text-align: center;
}

/* ── HERO (shared) ── */
.page-hero {
  background: var(--navy);
  padding: 80px var(--pad-x) 72px;
  position: relative;
  overflow: hidden;
}
.page-hero .deco {
  position: absolute; right: -80px; top: -80px;
  width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,138,0,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero h1 { color: var(--white); max-width: 620px; margin-bottom: 20px; }
.page-hero h1 em { color: var(--orange); font-style: normal; }
.page-hero p { font-size: 15px; color: rgba(255,255,255,0.65); max-width: 540px; line-height: 1.8; }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--orange);
  color: var(--white);
  padding: 13px 28px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  border: none;
  cursor: pointer;
  display: inline-block;
  transition: background var(--transition);
}
.btn-primary:hover { background: #e07800; }

.btn-secondary {
  border: 1.5px solid var(--navy);
  color: var(--navy);
  padding: 13px 28px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  background: transparent;
  cursor: pointer;
  display: inline-block;
  transition: all var(--transition);
}
.btn-secondary:hover { background: var(--navy); color: var(--white); }

.btn-outline-white {
  border: 1px solid rgba(255,255,255,0.5);
  color: var(--white);
  padding: 12px 26px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  background: transparent;
  cursor: pointer;
  display: inline-block;
  transition: all var(--transition);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); }

/* ── FOOTER ── */
.footer {
  background: var(--navy);
  padding: 48px var(--pad-x);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
}
.footer-logo { height: 34px; filter: brightness(0) invert(1); opacity: 0.85; }
.footer-tagline { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 14px; line-height: 1.7; }
.footer-col-title {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
  font-weight: 500;
}
.footer-link {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  display: block;
  margin-bottom: 10px;
  transition: color var(--transition);
}
.footer-link:hover { color: var(--white); }
.footer-bottom {
  background: rgba(0,0,0,0.2);
  padding: 16px var(--pad-x);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-copy { font-size: 10px; color: rgba(255,255,255,0.35); letter-spacing: 0.09em; }

/* ── STAT GRID ── */
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.stat-item { padding: 28px 24px; border-right: 0.5px solid var(--gray-3); }
.stat-item:last-child { border-right: none; }
.stat-num { font-size: 42px; font-weight: 700; color: var(--navy); line-height: 1; }
.stat-num sup { font-size: 20px; color: var(--orange); }
.stat-label { font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); margin-top: 8px; line-height: 1.4; }

/* ── CARD BASE ── */
.card {
  background: var(--white);
  border: 0.5px solid var(--gray-3);
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover { box-shadow: var(--shadow-md); }

/* ── TAG / BADGE ── */
.tag {
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 9px;
  font-weight: 600;
  display: inline-block;
}
.tag-navy { background: var(--navy); color: var(--white); }
.tag-orange { background: var(--orange); color: var(--white); }
.tag-light { background: #e8eef7; color: var(--navy); }

/* ── FORMS ── */
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); font-weight: 500; }
.field input,
.field select,
.field textarea {
  font-size: 13px;
  padding: 11px 14px;
  border: 0.5px solid var(--gray-4);
  color: var(--navy);
  background: var(--white);
  outline: none;
  font-family: inherit;
  transition: border-color var(--transition);
}
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--navy); }
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2300276A' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
}
.field textarea { resize: vertical; min-height: 120px; line-height: 1.6; }
.field input::placeholder,
.field textarea::placeholder { color: var(--text-light); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  :root { --pad-x: 28px; --pad-section: 56px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .footer { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { padding: 14px 28px; }
}

@media (max-width: 540px) {
  :root { --pad-x: 20px; --pad-section: 44px; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 0.5px solid var(--gray-3); }
  .stat-item:last-child { border-bottom: none; }
  .footer { grid-template-columns: 1fr; gap: 24px; padding: 32px 20px; }
  .footer-bottom { padding: 14px 20px; flex-direction: column; gap: 4px; }
}
