/* Aragon eXeed GmbH - aragon.consulting - V2 */
/* Farbwelt gemaess aktueller Webseite: dunkler Grund, Gold/Orange-Akzent */

:root {
  --bg: #0d181c;
  --bg-soft: #122027;
  --panel: #182a32;
  --panel-line: #243a44;
  --text: #e9eef0;
  --muted: #a3b4ba;
  --accent: #f2a33c;
  --accent-strong: #e8912a;
  --maxw: 1120px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-strong); }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* Header */
header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(13, 24, 28, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--panel-line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--maxw); margin: 0 auto; padding: 14px 24px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 46px; width: auto; display: block; }
.nav-links { display: flex; gap: 24px; align-items: center; list-style: none; }
.nav-links a { color: var(--text); font-size: 15px; }
.nav-links a:hover, .nav-links a.active { color: var(--accent); }
.nav-cta {
  background: var(--accent); color: #14222a !important;
  padding: 9px 18px; border-radius: 6px; font-size: 14.5px;
}
.nav-cta:hover { background: var(--accent-strong); }
.lang { color: var(--muted) !important; font-size: 13.5px !important; border: 1px solid var(--panel-line); padding: 5px 11px; border-radius: 6px; }
.lang:hover { color: var(--accent) !important; border-color: var(--accent); }
.menu-btn {
  display: none; background: none; border: 1px solid var(--panel-line);
  color: var(--text); font-size: 22px; line-height: 1;
  padding: 6px 12px; border-radius: 6px; cursor: pointer;
}

/* Hero */
.hero {
  padding: 110px 0 96px;
  background: linear-gradient(90deg, rgba(13,24,28,0.92) 0%, rgba(13,24,28,0.55) 60%, rgba(13,24,28,0.25) 100%), url("assets/hero-bg.svg");
  background-size: cover; background-position: right center;
  border-bottom: 1px solid var(--panel-line);
}
.hero h1 { font-size: 46px; line-height: 1.18; font-weight: 650; max-width: 880px; }
.hero h1 .accent { color: var(--accent); }
.hero p.sub { margin-top: 22px; max-width: 720px; color: var(--muted); font-size: 19px; }
.hero .cta-row { margin-top: 34px; }

.kicker {
  color: var(--accent); font-size: 13.5px; letter-spacing: 0.14em;
  text-transform: uppercase; margin-bottom: 14px;
}

.btn {
  display: inline-block; background: var(--accent); color: #14222a;
  padding: 14px 26px; border-radius: 6px; font-size: 16px; font-weight: 600;
}
.btn:hover { background: var(--accent-strong); color: #14222a; }
.btn.ghost { background: transparent; color: var(--accent); border: 1px solid var(--accent); }
.btn.ghost:hover { background: rgba(242,163,60,0.12); }
.btn-note { display: block; margin-top: 12px; color: var(--muted); font-size: 14.5px; }

/* Sections */
section { padding: 72px 0; }
section.alt { background: var(--bg-soft); }
h2 { font-size: 30px; font-weight: 650; line-height: 1.25; margin-bottom: 18px; }
h3 { font-size: 21px; font-weight: 600; margin-bottom: 10px; }
.lead { color: var(--muted); font-size: 18px; max-width: 780px; }
p + p { margin-top: 14px; }
.prose { max-width: 800px; }
.prose p { margin-top: 14px; color: var(--text); }
.prose p:first-child { margin-top: 0; }
.muted { color: var(--muted); }

/* Split layout with motif image */
.split { display: grid; grid-template-columns: 1.15fr 1fr; gap: 48px; align-items: center; }
.split img { width: 100%; height: auto; border-radius: 12px; border: 1px solid var(--panel-line); display: block; }

/* Cards */
.grid { display: grid; gap: 22px; margin-top: 36px; }
.grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.card {
  background: var(--panel); border: 1px solid var(--panel-line);
  border-radius: 10px; padding: 28px;
}
.card h3 { color: var(--text); }
.card p { color: var(--muted); font-size: 15.5px; margin-top: 8px; }
.card .num { color: var(--accent); font-size: 14px; margin-bottom: 10px; display: block; }
.card a.more { display: inline-block; margin-top: 14px; font-size: 15px; }
.card .icon { display: inline-flex; width: 46px; height: 46px; align-items: center; justify-content: center;
  border-radius: 9px; background: rgba(242,163,60,0.12); margin-bottom: 16px; }
.card .icon svg { width: 24px; height: 24px; stroke: var(--accent); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

/* Two application worlds */
.worlds .world { border-top: 3px solid var(--accent); }
.worlds .world h3 { margin-top: 4px; }
.worlds .world ul { list-style: none; margin-top: 14px; }
.worlds .world ul li {
  padding: 7px 0 7px 24px; position: relative;
  color: var(--muted); font-size: 15px; border-bottom: 1px solid var(--panel-line);
}
.worlds .world ul li:last-child { border-bottom: none; }
.worlds .world ul li::before {
  content: ""; position: absolute; left: 0; top: 14px;
  width: 8px; height: 8px; background: var(--accent); border-radius: 2px;
}

/* Founder portrait */
.split img.portrait { aspect-ratio: 1 / 1.05; object-fit: cover; object-position: center top; max-width: 420px; justify-self: center; }

/* Quote */
.quote { text-align: center; padding: 86px 0; }
.quote blockquote { font-size: 26px; line-height: 1.45; max-width: 860px; margin: 0 auto; font-weight: 500; }
.quote .who { margin-top: 20px; color: var(--muted); font-size: 15px; }
.quote .mark { color: var(--accent); font-size: 52px; line-height: 0.6; display: block; margin-bottom: 22px; font-family: Georgia, serif; }

/* Service detail blocks */
.service { padding: 56px 0; border-bottom: 1px solid var(--panel-line); }
.service:last-of-type { border-bottom: none; }
.service .tag { color: var(--accent); font-size: 14px; margin-bottom: 8px; display: block; }
.mandate {
  margin-top: 18px; background: var(--panel); border-left: 3px solid var(--accent);
  padding: 16px 20px; border-radius: 0 8px 8px 0; color: var(--muted); font-size: 15.5px;
}
.mandate .lbl { color: var(--accent); font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; display: block; margin-bottom: 6px; }

/* Lists */
ul.checks { list-style: none; margin-top: 18px; max-width: 800px; }
ul.checks li {
  padding: 10px 0 10px 30px; position: relative;
  border-bottom: 1px solid var(--panel-line); color: var(--text); font-size: 16px;
}
ul.checks li:last-child { border-bottom: none; }
ul.checks li::before {
  content: ""; position: absolute; left: 0; top: 18px;
  width: 9px; height: 9px; background: var(--accent); border-radius: 2px;
}

/* Package cards */
.pkg { background: var(--panel); border: 1px solid var(--panel-line); border-radius: 10px; padding: 32px; margin-top: 26px; }
.pkg h3 { font-size: 22px; }
.pkg dl { margin-top: 16px; }
.pkg dt { color: var(--accent); font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; margin-top: 14px; }
.pkg dd { color: var(--muted); margin-top: 4px; font-size: 15.5px; }

/* CTA band */
.cta-band { background: var(--bg-soft); text-align: center; padding: 80px 0; border-top: 1px solid var(--panel-line); }
.cta-band h2 { font-size: 32px; }
.cta-band p { color: var(--muted); margin-top: 12px; max-width: 640px; margin-left: auto; margin-right: auto; }
.cta-band .btn { margin-top: 28px; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 40px; }
.contact-grid .card .num { font-size: 13px; }
.contact-grid .card p { font-size: 15px; }
.booking {
  margin-top: 44px; background: var(--panel); border: 1px solid var(--panel-line);
  border-radius: 12px; padding: 36px; display: flex; justify-content: space-between;
  align-items: center; gap: 28px; flex-wrap: wrap;
}
.booking h3 { font-size: 22px; }
.booking p { color: var(--muted); margin-top: 8px; max-width: 560px; }

/* Footer */
footer { background: #0a1216; border-top: 1px solid var(--panel-line); padding: 44px 0 30px; }
.foot { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.foot img { height: 40px; }
.foot-links { display: flex; gap: 22px; list-style: none; flex-wrap: wrap; }
.foot-links a { color: var(--muted); font-size: 14.5px; }
.foot-links a:hover { color: var(--accent); }
.copyright { margin-top: 26px; text-align: center; color: var(--muted); font-size: 13.5px; }

/* Legal pages */
.legal { max-width: 800px; }
.legal h2 { font-size: 22px; margin-top: 36px; }
.legal p { margin-top: 12px; color: var(--muted); }
.legal ul { margin: 12px 0 0 22px; color: var(--muted); }

/* Page intro */
.page-head {
  padding: 88px 0 60px;
  background: linear-gradient(90deg, rgba(13,24,28,0.95) 0%, rgba(13,24,28,0.6) 100%), url("assets/hero-bg.svg");
  background-size: cover; background-position: right center;
  border-bottom: 1px solid var(--panel-line);
}
.page-head h1 { font-size: 38px; font-weight: 650; line-height: 1.2; max-width: 860px; }
.page-head .lead { margin-top: 18px; }

/* Responsive */
@media (max-width: 920px) {
  .grid.cols-3, .grid.cols-2, .grid.cols-4, .contact-grid { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 34px; }
  .split { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .menu-btn { display: block; }
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; background: var(--bg-soft); padding: 18px 24px;
    border-bottom: 1px solid var(--panel-line); gap: 16px; align-items: flex-start;
  }
  .nav-links.open { display: flex; }
  .grid.cols-3, .grid.cols-2, .grid.cols-4, .contact-grid { grid-template-columns: 1fr; }
  .hero { padding: 64px 0 56px; }
  .hero h1 { font-size: 29px; }
  .page-head h1 { font-size: 28px; }
  .quote blockquote { font-size: 20px; }
  h2 { font-size: 25px; }
}
