/* ============================================================
   GORAN.HR — styles-v2.css
   Light theme · Executive Advisor & Sparring Partner
   Guidelines v1 — April 2026
   ============================================================ */


/* ── Custom Properties ── */
:root {
  --bg:          #FAFAF8;
  --bg-white:    #FFFFFF;
  --surface:     #F4F3F0;
  --bg-dark:     #1C3A6B;
  --text:        #1A1A18;
  --text-2:      #6B6B67;
  --text-3:      #9a9794;
  --accent:      #1C3A6B;
  --accent-mid:  #2A4F8E;
  --accent-soft: #EDF1F8;
  --accent-text: #1C3A6B;
  --border:      #E8E6E1;
  --border-dark: rgba(255,255,255,0.12);

  --ff: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --fw-light:   300;
  --fw-regular: 400;
  --fw-medium:  500;
  --fw-semi:    600;
  --fw-bold:    700;

  --max-text:   680px;
  --max-wide:   1080px;
  --header-h:   60px;
}


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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: var(--ff);
  font-size: 17px;
  font-weight: var(--fw-regular);
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }


/* ── Utilities ── */
.hidden { display: none !important; }


/* ── Container ── */
.container {
  width: 100%;
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: 0 48px;
}

.container--narrow { max-width: var(--max-text); }
.container--center { text-align: center; }


/* ── Header ── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  background: rgba(250,250,248, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.header.scrolled { border-bottom-color: var(--border); }

.header__name {
  font-size: 15px;
  font-weight: var(--fw-semi);
  letter-spacing: -0.01em;
  color: var(--text);
  flex-shrink: 0;
  transition: opacity 0.2s;
}

.header__name:hover { opacity: 0.7; }

.header__right {
  display: flex;
  align-items: center;
  gap: 24px;
}


/* ── Navigation ── */
.nav { flex: 1; display: flex; justify-content: center; }

.nav__list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav__link {
  font-size: 14px;
  font-weight: var(--fw-medium);
  color: var(--text-2);
  padding: 6px 12px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}

.nav__link:hover { color: var(--text); background: rgba(0,0,0,0.04); }

.nav__link--cta {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
  font-weight: var(--fw-semi);
  padding: 5px 16px;
}

.nav__link--cta:hover { background: var(--accent); color: #fff; }


/* ── Lang Toggle ── */
.lang-toggle {
  display: flex;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 3px;
  gap: 0;
}

.lang-btn {
  background: none;
  border: none;
  font-family: var(--ff);
  font-size: 12px;
  font-weight: var(--fw-medium);
  letter-spacing: 0.06em;
  color: var(--text-3);
  cursor: pointer;
  padding: 3px 10px;
  border-radius: 100px;
  transition: all 0.2s;
}

.lang-btn:hover { color: var(--text); }
.lang-btn--active { background: white; color: var(--accent); box-shadow: 0 1px 3px rgba(0,0,0,0.1); }
.lang-divider { display: none; }


/* ── Hamburger ── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 0;
  width: 24px;
}

.hamburger__line {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text-2);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hamburger--open .hamburger__line:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger--open .hamburger__line:nth-child(2) { opacity: 0; }
.hamburger--open .hamburger__line:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }


/* ── Mobile Menu ── */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0; bottom: 0;
  z-index: 99;
  background: var(--bg);
  border-top: 1px solid var(--border);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 32px 0;
}

.mobile-menu.mobile-menu--open { display: flex; }

.mobile-menu__list {
  list-style: none;
  text-align: center;
}

.mobile-menu__link {
  display: block;
  font-size: 28px;
  font-weight: var(--fw-semi);
  color: var(--text-2);
  padding: 14px 40px;
  transition: color 0.2s;
}

.mobile-menu__link:hover      { color: var(--text); }
.mobile-menu__link--cta       { color: var(--accent); }
.mobile-menu__link--cta:hover { color: var(--accent-mid); }

.mobile-menu__lang {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 36px;
}


/* ── Sections ── */
.section {
  padding: 100px 0;
  background: var(--bg);
}

.section--white    { background: var(--bg-white); }
.section--surface  { background: var(--surface); }
.section--dark     { background: var(--bg-dark); }
.section--bordered {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section--hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-h) + 80px);
  padding-bottom: 80px;
  background: var(--bg) radial-gradient(ellipse at 70% 20%, rgba(28,58,107,0.06) 0%, transparent 60%);
}

.section--contact {
  background: var(--bg);
  text-align: center;
}


/* ── Labels ── */
.section__label {
  display: inline-block;
  font-size: 11px;
  font-weight: var(--fw-semi);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.section__label--light { color: rgba(255,255,255,0.5); }

.section__title {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: var(--fw-bold);
  line-height: 1.20;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 40px;
}

.section__title--light { color: #fff; margin-bottom: 52px; }

.section__intro {
  font-size: 17px;
  color: var(--text-2);
  max-width: 560px;
  margin-bottom: 52px;
  line-height: 1.7;
}


/* ── Hero ── */
.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-soft);
  color: var(--accent-text);
  font-size: 13px;
  font-weight: var(--fw-medium);
  letter-spacing: 0.04em;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero__pill::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.7;
  flex-shrink: 0;
}

.hero__title {
  font-size: clamp(42px, 5.5vw, 68px);
  font-weight: var(--fw-bold);
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: var(--text);
  max-width: 780px;
  margin-bottom: 20px;
}

.hero__cred {
  font-size: 14px;
  font-weight: var(--fw-medium);
  color: var(--text-2);
  margin-bottom: 32px;
  letter-spacing: 0.01em;
}

.hero__divider {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  border-radius: 2px;
  margin-bottom: 32px;
}

.hero__body {
  font-size: clamp(17px, 1.8vw, 20px);
  line-height: 1.75;
  letter-spacing: -0.01em;
  color: var(--text-2);
  max-width: 600px;
  margin-bottom: 40px;
}

.hero__body strong { color: var(--text); font-weight: var(--fw-semi); }


/* ── Button ── */
.btn {
  display: inline-block;
  font-family: var(--ff);
  font-size: 15px;
  font-weight: var(--fw-semi);
  padding: 14px 32px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  border: none;
  text-decoration: none;
}

.btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 20px rgba(28,58,107,0.22);
}

.btn--primary:hover {
  background: var(--accent-mid);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(28,58,107,0.32);
}

.hero__entry {
  margin-top: 12px;
  font-size: 13px;
  color: var(--text-3);
  letter-spacing: 0.01em;
}

/* Email CTA */
.btn--email {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff);
  font-size: 17px;
  font-weight: var(--fw-medium);
  color: var(--accent);
  background: var(--accent-soft);
  padding: 16px 32px;
  border-radius: 10px;
  border: none;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.btn--email:hover { background: var(--accent); color: white; }
.btn--email:hover svg { stroke: white; }

.btn--email svg {
  width: 20px;
  height: 20px;
  stroke: var(--accent);
  stroke-width: 1.8;
  fill: none;
  flex-shrink: 0;
  transition: stroke 0.2s;
}


/* ── Situations ── */
.situations { display: flex; flex-direction: column; }

.situation {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 20px;
  align-items: flex-start;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}

.situation:first-child { border-top: 1px solid var(--border); }

.situation__num {
  font-size: 11px;
  font-weight: var(--fw-bold);
  color: var(--accent);
  letter-spacing: 0.1em;
  opacity: 0.4;
  padding-top: 4px;
}

.situation p {
  font-size: clamp(17px, 1.8vw, 20px);
  line-height: 1.65;
  color: var(--text);
  margin: 0;
}

.sit-sub {
  display: block;
  color: var(--text-2);
  font-weight: var(--fw-light);
}


/* ── Approach ── */
.approach__lead {
  font-size: 20px;
  line-height: 1.65;
  letter-spacing: -0.01em;
  color: var(--text);
  max-width: 760px;
  margin-bottom: 56px;
}

.approach__items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
  margin-bottom: 48px;
}

.approach__num {
  font-size: 11px;
  font-weight: var(--fw-semi);
  color: var(--accent);
  letter-spacing: 0.1em;
  opacity: 0.4;
  margin-bottom: 16px;
}

.approach__title {
  font-size: 16px;
  font-weight: var(--fw-semi);
  color: var(--text);
  margin-bottom: 10px;
}

.approach__item p {
  font-size: 15px;
  line-height: 1.72;
  color: var(--text-2);
}

.approach__closing {
  font-size: 14px;
  color: var(--text-3);
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

/* ── Format Note ── */
.format-note {
  margin-bottom: 32px;
  padding: 20px 24px;
  background: var(--bg);
  border-left: 3px solid var(--accent);
  border-radius: 0 6px 6px 0;
}

.format-note p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-2);
  margin: 0;
}


/* ── Results ── */
.results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255,255,255,0.12);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
}

.result-card {
  background: rgba(255,255,255,0.04);
  padding: 36px 32px;
  transition: background 0.2s;
}

.result-card:hover { background: rgba(255,255,255,0.08); }

.result-card__check {
  width: 28px;
  height: 28px;
  background: rgba(255,255,255,0.12);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: var(--fw-bold);
  color: rgba(255,255,255,0.9);
  margin-bottom: 16px;
}

.result-card h3 {
  font-size: 18px;
  font-weight: var(--fw-semi);
  color: #fff;
  margin-bottom: 0;
  line-height: 1.45;
}

.result-card p {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255,255,255,0.7);
}


/* ── Testimonial ── */
.testimonial {
  text-align: center;
  position: relative;
  background: var(--accent-soft);
  border-radius: 12px;
  padding: 48px 48px 40px;
}

.testimonial__mark {
  font-family: Georgia, serif;
  font-size: 88px;
  line-height: 0.8;
  color: var(--accent);
  opacity: 0.28;
  display: block;
  margin-bottom: 20px;
  user-select: none;
}

.testimonial__text {
  font-size: clamp(16px, 1.6vw, 18px);
  font-weight: var(--fw-regular);
  letter-spacing: -0.01em;
  line-height: 1.65;
  color: var(--text);
  max-width: 560px;
  margin: 0 auto 28px;
}

.testimonial__attr {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial__name {
  font-size: 15px;
  font-weight: var(--fw-semi);
  color: var(--text);
}

.testimonial__role {
  font-size: 14px;
  color: var(--text-2);
}


/* ── About ── */
.about-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 80px;
  align-items: start;
}

.about-photo img {
  width: 100%;
  border-radius: 4px;
}

.about-text p {
  font-size: 16px;
  line-height: 1.85;
  letter-spacing: -0.01em;
  color: var(--text-2);
  margin-bottom: 18px;
}

.about-text p:last-of-type { margin-bottom: 0; }

.about-linkedin {
  font-size: 14px !important;
  color: var(--text-3) !important;
  margin-top: 28px !important;
}

.about-linkedin a {
  color: var(--accent);
  border-bottom: 1px solid var(--accent-soft);
  transition: border-color 0.2s;
}

.about-linkedin a:hover { border-color: var(--accent); }

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.about-tag {
  display: inline-block;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 13px;
  font-weight: var(--fw-medium);
  padding: 6px 14px;
  border-radius: 100px;
}


/* ── Contact ── */
.contact__title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: var(--fw-bold);
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 20px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contact__body {
  font-size: 17px;
  line-height: 1.72;
  color: var(--text-2);
  max-width: 440px;
  margin: 0 auto 36px;
}

/* ── Contact soft step ── */
.contact__soft {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.contact__soft-divider {
  font-size: 12px;
  font-weight: var(--fw-medium);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-3);
}

.contact__soft-label {
  font-size: 15px;
  color: var(--text-2);
  margin: 0;
}

.btn--linkedin {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff);
  font-size: 15px;
  font-weight: var(--fw-medium);
  color: var(--accent);
  background: transparent;
  border: 1.5px solid var(--border);
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.btn--linkedin:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
}

.btn--linkedin svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.contact__soft-note {
  font-size: 13px;
  color: var(--text-3);
  margin: 0;
}


/* ── Footer ── */
.footer {
  background: #111110;
  border-top: none;
  padding: 48px 0 36px;
}

.footer__nav {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 32px;
}

.footer__nav-link {
  font-size: 13px;
  font-weight: var(--fw-medium);
  color: rgba(255,255,255,0.35);
  padding: 4px 10px;
  border-radius: 4px;
  transition: color 0.2s;
}

.footer__nav-link:hover { color: rgba(255,255,255,0.75); }

.footer__main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
}

.footer__identity {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer__name {
  font-size: 15px;
  font-weight: var(--fw-semi);
  color: #ffffff;
}

.footer__descriptor {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}

.footer__contact {
  display: flex;
  gap: 28px;
  align-items: center;
}

.footer__link {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer__link:hover { color: rgba(255,255,255,0.9); }

.footer__link--linkedin { color: rgba(255,255,255,0.65); }
.footer__link--linkedin:hover { color: #fff; }

.footer__linkedin-icon {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.footer__legal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 10px;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.02em;
}

.footer__legal--company {
  font-size: 10px;
  color: rgba(255,255,255,0.2);
}


/* ── Scroll Animations ── */
.s-animate {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.s-animate.visible {
  opacity: 1;
  transform: none;
}

.section--hero {
  opacity: 1 !important;
  transform: none !important;
}


/* ── Responsive — Tablet ── */
@media (max-width: 860px) {
  .container { padding: 0 32px; }
  .header    { padding: 0 32px; }
  .nav       { display: none; }
  .hamburger { display: flex; }

  .approach__items { grid-template-columns: 1fr; gap: 36px; }
  .results-grid    { grid-template-columns: 1fr; }
  .about-grid      { grid-template-columns: 1fr; gap: 40px; }
  .about-photo img { max-width: 240px; }
}


/* ── Responsive — Mobile ── */
@media (max-width: 540px) {
  :root { --header-h: 56px; }

  .container { padding: 0 24px; }
  .header    { padding: 0 24px; }
  .section   { padding: 72px 0; }

  .section--hero {
    padding-top: calc(var(--header-h) + 36px);
    padding-bottom: 60px;
  }

  .hero__body     { font-size: 16px; }
  .section__intro { font-size: 16px; }

  .situation  { gap: 14px; padding: 32px 0; }
  .result-card { padding: 28px 22px; }
  .testimonial { padding: 36px 28px 32px; }

  .footer__main  { flex-direction: column; align-items: flex-start; gap: 20px; }
  .footer__legal { flex-direction: column; align-items: flex-start; gap: 8px; }
}


/* ── Reduced Motion ── */
@media (prefers-reduced-motion: reduce) {
  .s-animate { opacity: 1; transform: none; transition: none; }
}
