/* =============================================
   HELLO productivity — adrijanalapic.com
   CSS by: github.com/mateva
   ============================================= */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue-deep:   #7ba6be;    /* replaced with brand blue */
  --blue-brand:  #7ba6be;    /* brand blue exact */
  --blue-mid:    #5a8fa8;    /* midpoint */
  --blue-light:  #a8c5d6;    /* light tint */
  --beige:       #cfb9a6;    /* brand beige */
  --accent:      #cdd629;    /* brand lime/green */
  --accent-dark: #b0b820;
  --dark:        #1a1a1a;
  --mid:         #5e5e5e;
  --light-bg:    #ffffff;    /* white background */
  --white:       #ffffff;
  --card-bg:     #ffffff;
  --border:      var(--beige); /* brand beige border */

  --font-head: 'Lora', Georgia, serif;
  --font-2:    'Marcellus', Georgia, serif;
  --font-body: 'Montserrat', 'Segoe UI', Arial, sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;

  --max-w: 1160px;
  --section-py: 96px;
}

html { font-size: 16px; }

body {
  font-family: var(--font-head);
  color: var(--dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: clip; /* 'clip' prevents horizontal scroll WITHOUT creating a scroll container (preserves position:sticky) */
}

img { display: block; max-width: 100%; }
a  { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.2;
  font-weight: 700;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); margin-bottom: 1.2rem; text-align: left; }
h3 { font-size: clamp(1.15rem, 2vw, 1.45rem); }

/* Section title — glavni naslov svake sekcije, identičan u svim sekcijama */
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-style: italic;
  color: var(--blue-brand);
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 52px;
}
.section--dark .section-title { color: var(--blue-brand); }
p  { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 0.6rem;
}

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: var(--section-py) 0; }
.section--light { background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section--dark  { background: var(--white); color: var(--dark); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section--dark h2, .section--dark h3 { color: var(--blue-deep); }
.section--dark .section-label { color: var(--accent-dark); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.15s;
}
.btn:hover { transform: translateY(-2px); }

.btn--primary {
  background: var(--accent);
  color: var(--dark);
  border-color: var(--accent);
}
.btn--primary:hover { background: var(--accent-dark); border-color: var(--accent-dark); }

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn--outline-white:hover { background: var(--white); color: var(--dark); }

.btn--outline-dark {
  background: transparent;
  color: var(--dark);
  border-color: var(--dark);
}
.btn--outline-dark:hover { background: var(--dark); color: var(--white); }

/* =============================================
   PRELOADER
   ============================================= */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--blue-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.ss-loaded #preloader {
  opacity: 0;
  visibility: hidden;
}

.dots-fade {
  display: flex;
  gap: 10px;
}
.dots-fade div {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.7);
  animation: dotsFade 1s ease-in-out infinite;
}
.dots-fade div:nth-child(2) { animation-delay: 0.2s; }
.dots-fade div:nth-child(3) { animation-delay: 0.4s; }
@keyframes dotsFade {
  0%, 100% { opacity: 0.2; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.1); }
}

/* =============================================
   S-INTRO (hero / full-screen intro)
   ============================================= */
.s-intro {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3;
  width: 100%;
  height: 100vh;
  background: var(--blue-brand);
  overflow: hidden;
  will-change: transform;
  box-shadow:
    0 0.8px 0.8px rgba(0,0,0,0.031),
    0 1.9px 1.9px rgba(0,0,0,0.044),
    0 3.9px 3.9px rgba(0,0,0,0.056),
    0 8px   8px   rgba(0,0,0,0.069),
    0 22px  22px  rgba(0,0,0,0.10);
}

/* Background layer (hero photo inside) */
.s-intro__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* Header bar */
.s-intro__header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  pointer-events: none;
}

/* Logo top-left */
.s-intro__logo {
  position: absolute;
  top: 28px;
  left: 40px;
  pointer-events: auto;
  opacity: 0;
  transform: translate(0, -100%);
  transition: opacity 0.5s, transform 0.5s cubic-bezier(0.28,0.12,0.22,1);
}
.s-intro__logo img {
  height: 76px;
  width: auto;
}
.no-js .s-intro__logo,
.ss-show .s-intro__logo {
  opacity: 1;
  transform: translate(0, 0);
}

/* Language selector top-right */
.s-intro__notify {
  position: absolute;
  top: 40px;
  right: 48px;
  z-index: 10;
  opacity: 0;
  transform: translate(0, -100%);
  transition: opacity 0.5s, transform 0.5s cubic-bezier(0.28,0.12,0.22,1);
}
.no-js .s-intro__notify,
.ss-show .s-intro__notify {
  opacity: 1;
  transform: translate(0, 0);
}

.lang-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4px;
}
.lang-list li + li::before {
  content: '|';
  display: inline-block;
  margin-right: 8px;
  color: var(--dark);
  font-size: 1rem;
}
.lang-list a {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dark);
  transition: color 0.2s;
}
.lang-list a.active {
  border-bottom: 2px solid var(--accent-dark);
  padding-bottom: 2px;
}
.lang-list a:hover { color: var(--accent-dark); }

/* Content layer */
.s-intro__content {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 1.5s 0.5s cubic-bezier(0.28,0.12,0.22,1);
}
.no-js .s-intro__content,
.ss-show .s-intro__content { opacity: 1; }

/* Subtitle bar */
.s-intro__subtitle {
  position: absolute;
  bottom: 10%;
  left: 48px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  z-index: 5;
}

/* =============================================
   S-DETAILS (content section behind hero)
   ============================================= */
/* Spacer creates the scroll runway for the curtain reveal */
#reveal-spacer {
  position: relative;
  z-index: 0;
  width: 100%;
}

.s-details {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  min-height: 100vh;
  background: var(--light-bg);
}

.s-details.is-released {
  position: absolute;
}

.s-details__inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 56px 24px 80px;
}

/* =============================================
   SECTION HEADING (above tab nav)
   ============================================= */
.s-details__heading {
  text-align: center;
  margin-top: 64px;
  margin-bottom: 48px;
}
.s-details__heading p {
  font-family: var(--font-2);
  font-size: clamp(2rem, 5vw, 4rem);
  color: var(--dark);
  letter-spacing: 0.03em;
  line-height: 1.15;
  margin: 0;
}

/* =============================================
   TAB NAVIGATION
   ============================================= */
.tab-nav {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  text-align: center;
  margin-bottom: 52px;
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--light-bg);
}

.tab-nav__list {
  list-style: none;
  display: flex;
  overflow: hidden;
  border-radius: 4px 4px 0 0;
  border-bottom: 1px solid var(--border);
  margin: 0;
}

.tab-nav__list li {
  padding-left: 0;
  flex: 1;
  border-right: 1px solid rgba(0,0,0,0.08);
  overflow: hidden;
  position: relative;
}
.tab-nav__list li:last-child { border: none; }

.tab-nav__list li::before {
  content: '';
  display: block;
  background-color: var(--blue-brand);
  border-radius: 4px 4px 0 0;
  width: 100%;
  height: 100%;
  transition: top 0.6s cubic-bezier(0.28,0.12,0.22,1);
  position: absolute;
  top: 100%;
  left: 0;
}
.tab-nav__list li[data-tab-active]::before { top: 0; }

.tab-nav__list a {
  display: block;
  padding: 0.8rem 1.2rem;
  color: var(--blue-deep);
  border: none;
  position: relative;
  white-space: nowrap;
}
.tab-nav__list a[data-tab-active] {
  color: var(--accent);
  font-weight: 400;
  outline: 0;
}

/* =============================================
   TAB CONTENT
   ============================================= */
.tab-content {
  position: relative;
}

.tab-content__item {
  opacity: 0;
  visibility: hidden;
  height: 0;
  overflow: hidden;
  position: absolute;
  top: 4rem;
}

.tab-content__item[data-tab-active] {
  opacity: 1;
  visibility: visible;
  height: auto;
  overflow: visible;
  transition-property: opacity, visibility, top;
  transition-duration: 0.6s;
  transition-timing-function: cubic-bezier(0.28,0.12,0.22,1);
  transition-delay: 0s;
  position: relative;
  top: 0;
}

.tab-content__item-header {
  margin-bottom: 40px;
}
.tab-content__item-header h2 {
  font-family: var(--font-2);
  font-style: normal;
  color: var(--blue-brand);
  margin: 0;
}

/* Full-productivity block within tab */
.fullprod-block {
  margin-top: 80px;
  padding-top: 64px;
  border-top: 1px solid var(--border);
}

/* =============================================
   GO-TO-TOP
   ============================================= */
.ss-go-top {
  position: fixed;
  bottom: 40px;
  right: 32px;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translate(0, 100%);
  transition: all 0.5s cubic-bezier(0.28,0.12,0.22,1);
}
.ss-go-top.link-is-visible {
  opacity: 1;
  visibility: visible;
  transform: translate(0, 0);
}
.ss-go-top a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--blue-deep);
  background: var(--white);
  color: var(--blue-deep);
  transition: background 0.25s, color 0.25s;
}
.ss-go-top a:hover {
  background: var(--blue-deep);
  color: var(--white);
}
.ss-go-top svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

/* =============================================
   OLD NAV — kept for reference, hidden
   ============================================= */
.site-nav {
  display: none;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0 30px 0;
  background: transparent;
  transition: background 0.3s, box-shadow 0.3s;
}
.site-nav.scrolled {
  background: var(--white);
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.nav-logo img {
  height: 72px;
  width: auto;
  filter: brightness(0) invert(1);
}
.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: center;
}
.nav-links a {
  color: var(--dark);
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--blue-deep); }
.nav-icon { display: none; }

/* Language switcher */
.lang-switch {
  display: flex;
  gap: 2px;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 50px;
  overflow: hidden;
  opacity: 0.7;
}
.lang-switch a {
  padding: 3px 10px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--dark);
  transition: background 0.2s, color 0.2s;
}
.lang-switch a.active, .lang-switch a:hover {
  background: var(--accent);
  color: var(--dark);
  opacity: 1;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =============================================
   DESKTOP NAV — nav-width border + sidebar on scroll
   ============================================= */
@media (min-width: 701px) {
  /* Border-bottom only as wide as nav content */
  .nav-inner {
    width: fit-content;
    margin: 0 auto;
    border-bottom: 3px solid rgba(123,166,190,0.45);
    padding-bottom: 30px;
  }

  /* Sidebar: pinned to right edge when scrolled */
  .site-nav.scrolled {
    position: fixed;
    top: 50%;
    right: 0;
    left: auto;
    width: auto;
    transform: translateY(-50%);
    padding: 10px 0;
    border-bottom: none;
    border-left: 1.5px solid var(--border);
    border-right: none;
    border-radius: 14px 0 0 14px;
    box-shadow: -4px 0 20px rgba(0,0,0,0.10);
    animation: navSidebarIn 0.25s ease;
  }
  @keyframes navSidebarIn {
    from { opacity: 0; transform: translateX(20px) translateY(-50%); }
    to   { opacity: 1; transform: translateX(0)    translateY(-50%); }
  }

  .site-nav.scrolled .container { padding: 0; width: auto; max-width: none; }
  .site-nav.scrolled .nav-inner { flex-direction: column; border-bottom: none; padding-bottom: 0; width: auto; margin: 0; }
  .site-nav.scrolled .nav-links { flex-direction: column; gap: 0; }

  /* Fixed-size li so only the hovered item's drawer expands, not the whole sidebar */
  .site-nav.scrolled .nav-links li:not(.nav-lang) {
    position: relative;
    width: 48px;
    height: 44px;
  }
  .site-nav.scrolled .nav-links li:not(.nav-lang) > a {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    padding: 0 13px;
    text-decoration: none;
    gap: 0;
    z-index: 1;
  }
  .site-nav.scrolled .nav-icon {
    display: flex;
    width: 22px;
    height: 22px;
    color: var(--blue-deep);
    flex-shrink: 0;
  }
  .site-nav.scrolled .nav-icon svg { width: 22px; height: 22px; }

  /* Drawer: label slides out to the right on hover */
  .site-nav.scrolled .nav-label {
    display: block;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: nowrap;
    color: var(--blue-deep);
    max-width: 0;
    overflow: hidden;
    opacity: 0;
    margin-right: 0;
    pointer-events: none;
    transition: max-width 0.25s ease, opacity 0.2s ease, margin-right 0.2s ease;
  }
  .site-nav.scrolled .nav-links li:hover > a {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-right: none;
    border-radius: 10px 0 0 10px;
  }
  .site-nav.scrolled .nav-links li:hover .nav-label {
    max-width: 180px;
    opacity: 1;
    margin-right: 8px;
  }

  /* Lang in sidebar */
  .site-nav.scrolled .nav-lang { width: 48px; }
  .site-nav.scrolled .nav-lang .lang-switch {
    flex-direction: column;
    gap: 0;
    margin: 4px;
    opacity: 1;
  }
  .site-nav.scrolled .nav-lang .lang-switch a {
    padding: 5px 10px;
    font-size: 0.65rem;
    text-decoration: none;
    justify-content: center;
  }
}

/* =============================================
   HERO ELEMENTS (inside .s-intro)
   ============================================= */
/* Logo1: gornji lijevi kut — now handled by .s-intro__logo */

/* hero-composite: single composited PNG, anchored to the bottom edge.
   The art canvas is 16:10 (1600x1000). Sizing the width from viewport height
   (160svh = aspect x 100svh) makes the image fill the full hero height on all
   normal desktop screens, so HELLO sits near the top instead of leaving a band
   of background above it. Capped at 100vw for narrow screens. */
.hero-composite {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  width: min(100vw, 160svh);
}
.hero-composite img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: bottom center;
}

/* Citat: desna strana, ispod logo2-part2 */
.hero-quote-area {
  position: absolute;
  left: calc(50% + 31svh);
  right: 0;
  bottom: 14%;
  padding: 0 5%;
  z-index: 8;
  text-align: left;
}

.hero-quote {
  font-family: var(--font-head);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--white);
  line-height: 1.55;
  font-style: italic;
  position: relative;
  padding-top: 0.6em;
}

.hero-quote-marks {
  font-family: Georgia, serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-style: normal;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
  vertical-align: middle;
}

.hero-quote cite {
  display: block;
  font-size: 0.85rem;
  font-style: normal;
  font-family: var(--font-body);
  color: var(--accent);
  margin-top: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

/* Scroll indicator */
.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.scroll-hint::after {
  content: '';
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
  animation: scrollline 2s ease-in-out infinite;
}
@keyframes scrollline {
  0%   { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50%  { opacity: 1; transform: scaleY(1); }
  100% { opacity: 0; }
}

/* =============================================
   WBS STRIP
   ============================================= */
.wbs-strip {
  background: none;
  padding: 28px 0;
  text-align: center;
}
.wbs-strip p {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 700;
  font-style: italic;
  letter-spacing: 0.03em;
  color: var(--blue-brand);
  margin: 0;
}
.wbs-sub {
  font-family: var(--font-2);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 400;
  font-style: normal;
  line-height: 1.5;
  color: var(--dark);
  max-width: 680px;
  margin: 0 auto 32px;
}

/* =============================================
   HERO V2 — logo-first concept (index2.html)
   ============================================= */
.hero--v2 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 140px;
}
.hero-v2-logo {
  text-align: center;
  margin-bottom: 0;
  width: 100%;
}
.hero-v2-logo img {
  max-width: min(520px, 80vw);
  width: 100%;
  height: auto;
}
.hero-v2-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  width: 100%;
  margin-bottom: 52px;
}
.hero-v2-photo-side img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 64px rgba(0,0,0,0.45);
}
.hero-v2-bottom {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

/* =============================================
   INTRO STRIP
   ============================================= */
.intro-strip {
  background: var(--accent);
  padding: 24px 0;
  text-align: center;
}
.intro-strip p {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  font-weight: 600;
  color: var(--dark);
  max-width: 800px;
  margin: 0 auto;
}

/* =============================================
   O MENI / ABOUT
   ============================================= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.about-notice {
  display: flex;
  flex-direction: column;
}
.about-content {
  display: flex;
  flex-direction: column;
  border-left: 3px solid var(--accent);
  padding-left: 24px;
}
.about-content p { color: var(--mid); margin-bottom: 1.2rem; }

#o-meni .about-photo-wrap {
  margin-bottom: 20px;
}
#o-meni .about-photo-wrap img {
  max-height: 300px;
  width: auto;
  display: block;
  object-fit: contain;
  object-position: left center;
}

.notice-box {
  background: var(--light-bg);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 20px 24px;
  margin-top: 1.6rem;
  font-size: 0.95rem;
  color: var(--mid);
}
.notice-box strong { color: var(--dark); display: block; margin-bottom: 0.6rem; }
.notice-box p { color: var(--mid); font-size: 0.95rem; margin-bottom: 0.5rem; }
.notice-list {
  margin: 6px 0 8px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.notice-list li {
  font-size: 0.92rem;
  color: var(--mid);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}
.notice-list li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--accent-dark);
}

/* Intro text section */
.intro-text-section { background: var(--white); }
.intro-text-grid {
  max-width: 820px;
  margin: 0 auto;
}
.intro-text-grid .section-label { display: block; margin-bottom: 1rem; }
.intro-text-grid > p { color: var(--mid); font-size: 1.05rem; }
.intro-blockquote {
  margin-top: 28px;
  padding: 24px 32px;
  border-left: 4px solid var(--accent);
  background: var(--light-bg);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-family: var(--font-head);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: var(--dark);
  line-height: 1.55;
  font-style: italic;
}

/* ==============================================
   SERVICE CARDS — jenna-inspired grid
   ============================================= */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  border: 1.5px solid var(--border);
  transition: box-shadow 0.25s, transform 0.25s;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.service-card:hover {
  box-shadow: 0 12px 40px rgba(26,53,87,0.12);
  transform: translateY(-4px);
}
.service-card__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-deep);
  flex-shrink: 0;
}
.service-card__icon svg {
  width: 100%;
  height: 100%;
}
.cards-mb { margin-bottom: 80px; }
.service-card h3 { font-family: var(--font-2); font-size: clamp(1.1rem, 2vw, 1.6rem); font-weight: 400; letter-spacing: 0.02em; color: var(--blue-deep); margin: 0; }
.service-card p   { color: var(--mid); font-size: 0.95rem; }
.service-card ul  { display: flex; flex-direction: column; gap: 8px; margin-top: 4px; }
.service-card li  {
  color: var(--mid);
  font-size: 0.9rem;
  padding-left: 20px;
  position: relative;
}
.service-card li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: var(--accent-dark);
  font-size: 0.8rem;
}

/* =============================================
   HOW I HELP
   ============================================= */
.howhelp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.howhelp-content { display: flex; flex-direction: column; gap: 20px; }
.howhelp-checklist { display: flex; flex-direction: column; gap: 12px; }
.check-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 1rem;
  color: var(--dark);
}
.check-item .check-icon {
  width: 28px;
  height: 28px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  flex-shrink: 0;
  margin-top: 2px;
  padding: 5px;
}
.check-item .check-icon svg {
  width: 100%;
  height: 100%;
}
.card-intro {
  font-size: 0.9rem;
  color: var(--mid);
}
.result-box {
  background: var(--white);
  border-left: 3px solid var(--blue-brand);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 28px 32px;
  margin-top: 8px;
}
.result-box h4 { color: var(--blue-deep); margin-bottom: 14px; font-family: var(--font-body); font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; }
.result-box ul { display: flex; flex-direction: column; gap: 8px; }
.result-box li { font-size: 0.95rem; color: var(--dark); padding-left: 20px; position: relative; }
.result-box li::before { content: '→'; position: absolute; left: 0; color: var(--accent-dark); }

.howhelp-photo { display: flex; flex-direction: column; gap: 24px; }
.howhelp-photo img {
  border-radius: var(--radius-md);
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  object-position: center;
}

/* =============================================
   STATUS TOGGLE — Solo / Tim
   ============================================= */
.status-section { background: var(--white); }
.status-section .section-intro { max-width: 600px; margin-bottom: 48px; }
.status-section .section-intro p { color: var(--mid); }

.status-choice {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 560px;
  margin: 0 auto 52px;
}
.status-choice-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 28px;
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s, color 0.25s, box-shadow 0.2s, transform 0.15s;
  text-align: left;
  font-family: var(--font-body);
}
.status-choice-btn:hover {
  transform: translateY(-2px);
  border-color: var(--blue-brand);
  box-shadow: 0 6px 24px rgba(45,90,110,0.12);
}
.status-choice-btn.active {
  border-color: var(--blue-deep);
  background: var(--blue-deep);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(45,90,110,0.25);
}
.choice-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.choice-icon svg { width: 100%; height: 100%; }
.choice-label { font-size: 1rem; font-weight: 700; }
.choice-desc { font-size: 0.82rem; opacity: 0.65; margin-top: 3px; }

.status-panel { display: none; }
.status-panel.active { display: grid; }
.status-panel { grid-template-columns: repeat(4, 1fr); gap: 24px; }

.status-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  border: 1.5px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow 0.25s, transform 0.25s;
}
.status-card:hover {
  box-shadow: 0 8px 32px rgba(26,53,87,0.1);
  transform: translateY(-3px);
}
.status-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
}
.status-card__badge {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-deep);
  flex-shrink: 0;
}
.status-card__badge svg {
  width: 100%;
  height: 100%;
}
.status-card h3 { font-family: var(--font-head); color: var(--blue-deep); font-size: 1.15rem; }
.status-card ul { display: flex; flex-direction: column; gap: 8px; }
.status-card li { font-size: 0.9rem; color: var(--mid); padding-left: 18px; position: relative; line-height: 1.5; }
.status-card li::before { content: '·'; position: absolute; left: 4px; font-size: 1.2rem; color: var(--accent-dark); line-height: 1.2; }
.status-card .delivery-list li::before { content: '✔'; font-size: 0.8rem; color: var(--accent-dark); }
.delivery-days {
  display: inline-block;
  background: var(--accent);
  color: var(--dark);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 8px;
}

/* =============================================
   FULL PRODUCTIVITY
   ============================================= */
.fullprod {
  position: relative;
  overflow: hidden;
}

.fullprod-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 72px;
  align-items: start;
}
.fullprod-content { display: flex; flex-direction: column; gap: 20px; }
.fullprod-content p { color: var(--mid); }
.fullprod-list { display: flex; flex-direction: column; gap: 10px; margin-top: 4px; }
.fullprod-list li {
  color: var(--dark);
  font-size: 0.95rem;
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
}
.fullprod-list li::before { content: '→'; position: absolute; left: 0; color: var(--accent-dark); }

.fullprod-wants {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-top: 3px solid var(--blue-brand);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.fullprod-wants h3 { color: var(--blue-deep); margin-bottom: 4px; }
.fullprod-wants ul { display: flex; flex-direction: column; gap: 12px; }
.fullprod-wants li {
  color: var(--dark);
  font-size: 0.95rem;
  padding-left: 22px;
  position: relative;
}
.fullprod-wants li::before { content: '✕'; position: absolute; left: 0; color: var(--accent-dark); font-size: 0.8rem; }
.fullprod-cta { margin-top: 8px; }
.fullprod-cta-note {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(45,90,110,0.15);
  font-size: 0.95rem;
  color: var(--mid);
}

/* Notion brand highlight (used in service cards and howhelp) */
.notion-mark {
  background: var(--accent);
  color: var(--dark);
  padding: 0 5px 1px;
  border-radius: 3px;
  font-style: normal;
}

/* =============================================
   KONTAKT / CONTACT
   ============================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.contact-content { display: flex; flex-direction: column; gap: 28px; }
.contact-content p { color: var(--mid); }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-item__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-deep);
  flex-shrink: 0;
}
.contact-item__icon svg {
  width: 24px;
  height: 24px;
}
.contact-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-item__text { display: flex; flex-direction: column; }
.contact-item__label { font-size: 0.78rem; font-weight: 700; color: var(--mid); letter-spacing: 0.1em; text-transform: uppercase; }
.contact-item__value { font-size: 1.05rem; color: var(--dark); font-weight: 500; }
.contact-item__value a { transition: color 0.2s; }
.contact-item__value a:hover { color: var(--blue-brand); }

.contact-photo {
  position: relative;
  display: flex;
  flex-direction: column;
  align-self: stretch;
}
.contact-photo > img:first-child {
  border-radius: var(--radius-md);
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.legal-note {
  margin-top: 28px;
  padding: 16px 20px;
  background: var(--light-bg);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  color: var(--mid);
  line-height: 1.5;
}

.contact-notion-strip {
  margin-top: 56px;
  border-radius: var(--radius-md);
  overflow: hidden;
  width: 100%;
  background: var(--blue-brand);
  display: flex;
  justify-content: center;
  padding: 32px 24px;
}
.contact-notion-strip img {
  width: auto;
  max-width: 640px;
  height: auto;
  display: block;
  border-radius: 0;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.5);
  padding: 32px 0;
  text-align: center;
  font-size: 0.85rem;
}
.footer-logo {
  height: 100px;
  width: auto;
  margin: 0 auto 24px;
  display: block;
}
.footer-links { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; margin-bottom: 16px; }
.footer-links a { color: rgba(255,255,255,0.5); transition: color 0.2s; font-size: 0.85rem; }
.footer-links a:hover { color: var(--accent); }
.site-footer a { color: inherit; transition: color 0.2s; }
.site-footer a:hover { color: var(--accent); }

/* =============================================
   SECTION INTRO (center-aligned headings)
   ============================================= */
.section-intro {
  text-align: left;
  max-width: 780px;
  margin: 0 0 56px;
}
.section-intro p { color: var(--mid); font-size: 1.05rem; }

/* =============================================
   FADE-IN ANIMATION
   ============================================= */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 960px) {
  .hero-composite { width: min(98vw, 900px); }
  .s-intro__logo img { height: 70px; }
  .hero-quote-area { left: calc(50% + 25svh); right: 0; bottom: 12%; padding: 0 4%; }
  .about-grid, .howhelp-grid, .contact-grid, .fullprod-grid { grid-template-columns: 1fr; gap: 48px; }
  .status-choice { max-width: 100%; }
}

@media (max-width: 700px) {
  :root { --section-py: 64px; }
  .s-intro__logo { top: 16px; left: 16px; }
  .s-intro__logo img { height: 56px; }
  .s-intro__notify { top: 20px; right: 16px; }
  .tab-nav {
    position: static;
  }
  .tab-nav__list {
    flex-direction: column;
    border-radius: 4px;
    border-bottom: none;
    background: rgba(123, 166, 190, 0.13);
  }
  .tab-nav__list li {
    border-right: none;
    border-bottom: 1px solid rgba(123, 166, 190, 0.2);
  }
  .tab-nav__list li:last-child { border-bottom: none; }
  .tab-nav__list a { padding: 0.75rem 1rem; font-size: 0.65rem; }
  .hero-composite {
    bottom: 0;
    top: 88px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    height: calc(100% - 88px);
  }
  .hero-composite img {
    height: 100%;
    width: auto;
    max-width: none;
    content: url('../images/hero-composite-mobile.png');
  }
  .hero-quote-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    left: 0;
    right: 0;
    padding: 20px 24px 18px;
    bottom: 6%;
    z-index: 8;
    text-align: center;
    background: linear-gradient(to bottom,
      transparent 0%,
      rgba(45, 90, 110, 0.60) 35%,
      rgba(45, 90, 110, 0.60) 70%,
      transparent 100%
    );
    border-radius: 0;
  }
  .hero-quote { font-size: 0.82rem; line-height: 1.5; }
  .status-choice { grid-template-columns: 1fr; max-width: 340px; }
  .fullprod-grid { grid-template-columns: 1fr; }
  .s-details__inner { padding: 40px 16px 60px; }
}

@media (max-width: 1100px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .status-panel { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .cards-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-cta { flex-direction: column; align-items: flex-start; }
  .status-panel { grid-template-columns: 1fr; }
}
