/* ── OkNexus S.L. — Professional Landing Page ── */

/* ── Variables ── */
:root {
  --navy:      #0f2044;
  --gold:      #c9a84c;
  --gold-light:#e8c97a;
  --slate:     #475569;
  --mist:      #f0f4f8;
  --white:     #ffffff;
  --off-white: #fafbfc;
  --border:    #dce3ed;
  --text:      #1e2a3a;
  --subtext:   #64748b;
  --radius:    6px;
  --shadow-sm: 0 1px 3px rgba(15,32,68,0.08), 0 1px 2px rgba(15,32,68,0.04);
  --shadow-md: 0 4px 12px rgba(15,32,68,0.10), 0 2px 6px rgba(15,32,68,0.06);
  --shadow-lg: 0 16px 40px rgba(15,32,68,0.12), 0 4px 12px rgba(15,32,68,0.06);
  --max-w:     1100px;
  --transition: 0.2s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4 { line-height: 1.2; font-weight: 600; }

/* ── Layout Helpers ── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 80px 0; }
.section--mist { background: var(--mist); }
.section--navy { background: var(--navy); color: var(--white); }

/* ── Navigation ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.navbar__logo {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.navbar__logo span { color: var(--gold); }
.navbar__links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.navbar__links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--slate);
  transition: color var(--transition);
}
.navbar__links a:hover { color: var(--navy); }
.navbar__cta {
  background: var(--navy) !important;
  color: var(--white) !important;
  padding: 8px 20px;
  border-radius: var(--radius);
  font-size: 0.875rem !important;
  font-weight: 600;
  transition: background var(--transition);
}
.navbar__cta:hover { background: var(--gold) !important; color: var(--navy) !important; }
@media (max-width: 640px) {
  .navbar__links { display: none; }
}

/* ── Hero ── */
.hero {
  background: var(--navy);
  color: var(--white);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://pub-629428d185ca4960a0a73c850d32294b.r2.dev/generated-images/company_146644/e1e4e9b1-8cb4-49c5-af52-19161d62d82d.jpg') center/cover no-repeat;
  opacity: 0.12;
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold-light);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero__eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
}
.hero__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.1;
}
.hero__title em { font-style: normal; color: var(--gold); }
.hero__desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__stats {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 28px;
}
.hero__stats p { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.06em; }
.hero__badges { display: flex; flex-direction: column; gap: 12px; }
.hero__badge { display: flex; align-items: center; gap: 12px; }
.hero__badge-icon {
  width: 36px; height: 36px;
  background: rgba(201,168,76,0.15);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.875rem; color: var(--gold-light);
  flex-shrink: 0;
}
.hero__badge-text strong { display: block; font-size: 0.95rem; font-weight: 600; color: var(--white); }
.hero__badge-text span { font-size: 0.8rem; color: rgba(255,255,255,0.55); }
@media (max-width: 768px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero::after { opacity: 0.07; }
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
}
.btn--primary {
  background: var(--gold);
  color: var(--navy);
}
.btn--primary:hover { background: var(--gold-light); }
.btn--outline {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.3);
  color: var(--white);
}
.btn--outline:hover { border-color: var(--gold); color: var(--gold); }
.btn--outline-dark {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--slate);
}
.btn--outline-dark:hover { border-color: var(--navy); color: var(--navy); }

/* ── Section Header ── */
.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 52px;
}
.section-header__eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-header__title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--navy);
  margin-bottom: 16px;
}
.section--navy .section-header__title { color: var(--white); }
.section-header__desc {
  font-size: 1rem;
  color: var(--subtext);
  line-height: 1.7;
}
.section--navy .section-header__desc { color: rgba(255,255,255,0.6); }

/* ── Services ── */
.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px;
  transition: all var(--transition);
}
.service-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.service-card__icon {
  width: 48px; height: 48px;
  background: rgba(15,32,68,0.06);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 20px;
}
.service-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.service-card__desc {
  font-size: 0.9rem;
  color: var(--subtext);
  line-height: 1.65;
}
@media (max-width: 768px) {
  .services__grid { grid-template-columns: 1fr; }
}

/* ── About / Credibility ── */
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about__tag {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.about__title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--navy);
  margin-bottom: 20px;
}
.about__text {
  font-size: 0.95rem;
  color: var(--subtext);
  line-height: 1.75;
  margin-bottom: 24px;
}
.about__credentials { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.credential {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.credential__check {
  width: 20px; height: 20px;
  background: rgba(201,168,76,0.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.credential__text { font-size: 0.9rem; color: var(--text); }
.about__image-block {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a6b 100%);
  border-radius: 16px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about__stat { border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 20px; }
.about__stat:last-child { border-bottom: none; padding-bottom: 0; }
.about__stat-value { font-size: 2.2rem; font-weight: 700; color: var(--gold); line-height: 1; margin-bottom: 6px; }
.about__stat-label { font-size: 0.85rem; color: rgba(255,255,255,0.6); }
@media (max-width: 768px) {
  .about__inner { grid-template-columns: 1fr; }
}

/* ── Contact ── */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.contact__info {}
.contact__info-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}
.contact__info-desc {
  font-size: 0.95rem;
  color: var(--subtext);
  line-height: 1.7;
  margin-bottom: 28px;
}
.contact__items { display: flex; flex-direction: column; gap: 16px; }
.contact__item { display: flex; align-items: flex-start; gap: 14px; }
.contact__item-icon {
  width: 36px; height: 36px;
  background: rgba(201,168,76,0.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.875rem;
  color: var(--gold);
  flex-shrink: 0;
}
.contact__item-text strong { display: block; font-size: 0.9rem; font-weight: 600; color: var(--text); }
.contact__item-text span { font-size: 0.85rem; color: var(--subtext); }
.contact__form {
  background: var(--mist);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--slate);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 768px) {
  .contact__grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ── Footer ── */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.6);
  padding: 40px 0;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__brand { font-size: 1rem; font-weight: 700; color: var(--white); }
.footer__brand span { color: var(--gold); }
.footer__tagline { font-size: 0.8rem; color: rgba(255,255,255,0.45); margin-top: 4px; }
.footer__meta { font-size: 0.8rem; color: rgba(255,255,255,0.35); }
@media (max-width: 640px) {
  .footer__inner { flex-direction: column; gap: 16px; text-align: center; }
}

/* ── Divider / Accent ── */
.gold-rule {
  width: 40px; height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin-bottom: 16px;
}