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

:root {
  --navy:   #0A0F1E;
  --navy2:  #111827;
  --gold:   #00D4B8;
  --gold2:  #009FC5;
  --grad-angle: 90deg;
  --grad:   linear-gradient(var(--grad-angle), #00D4B8 0%, #2BCFFF 100%);
  --white:  #FFFFFF;
  --gray:   #9CA3AF;
  --gray2:  #6B7280;
  --light:  #F3F4F6;
  --serif:  'Urbanist', sans-serif;
  --sans:   'Inter', sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--navy); color: var(--white); overflow-x: hidden; }
button, input, select, textarea { font-family: inherit; }
h1, h2, h3, h4, h5, h6 { font-family: var(--serif); }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 60px;
  background: rgba(10,15,30,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: padding 250ms;
}
.nav.scrolled { padding: 14px 60px; }
.nav-logo {
  font-family: var(--serif); font-size: 22px; font-weight: 600;
  color: var(--white); text-decoration: none; letter-spacing: 0.3px;
}
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  font-family: var(--serif);
  font-size: 15px; font-weight: 500; color: var(--gray);
  text-decoration: none; letter-spacing: 0.5px; text-transform: uppercase;
  transition: color 150ms;
}
.nav-links a:hover, .nav-links .current-menu-item > a, .nav-links .current-page-ancestor > a { color: var(--gold); }
.nav-cta {
  font-family: var(--serif);
  background: var(--grad); color: #03282a;
  font-size: 13px; font-weight: 700; padding: 10px 24px;
  border-radius: 4px; text-decoration: none; letter-spacing: 0.3px;
  border: 1.5px solid transparent;
  transition: background 200ms, color 200ms, border-color 200ms;
}
.nav-cta:hover { background: transparent; color: var(--gold); border-color: var(--gold); }

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: all 250ms; }

.nav-mobile-overlay {
  display: none; position: fixed; inset: 0; z-index: 99;
  background: var(--navy); padding: 100px 40px 40px;
  flex-direction: column; gap: 8px;
}
.nav-mobile-overlay.open { display: flex; }
.nav-mobile-link {
  font-size: 28px; font-family: var(--serif); font-weight: 600;
  color: var(--white); text-decoration: none; padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color 150ms;
}
.nav-mobile-link:hover { color: var(--gold); }
.nav-mobile-cta {
  margin-top: 24px; background: var(--grad); color: #03282a !important;
  text-align: center; border-radius: 4px; border-bottom: none !important;
  font-family: var(--serif) !important; font-size: 16px !important; font-weight: 700 !important;
  padding: 16px !important; border: 1.5px solid transparent !important;
  transition: background 200ms, color 200ms, border-color 200ms !important;
}
.nav-mobile-cta:hover { background: transparent !important; color: var(--gold) !important; border-color: var(--gold) !important; }

/* ── HERO ── */
.hero {
  position: relative; height: 100dvh; min-height: 600px;
  display: flex; flex-direction: column;
  overflow: hidden;
}

.hero-slides {
  position: absolute; inset: 0;
}
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide--placeholder { background: var(--navy2); opacity: 1; }

.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to right,  rgba(10,15,30,0.92) 0%, rgba(10,15,30,0.75) 30%, rgba(10,15,30,0.1) 55%, transparent 100%),
    linear-gradient(to left,   rgba(10,15,30,0.72) 0%, transparent 30%),
    rgba(10,15,30,0.25);
}

.hero-content {
  position: relative; z-index: 2;
  flex: 1; display: flex; flex-direction: column;
  justify-content: center; padding: 120px 60px 60px;
}
.hero-label {
  font-size: 13px; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; margin-bottom: 20px;
  background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-headline {
  font-family: var(--serif); font-size: clamp(56px, 8vw, 120px);
  font-weight: 800; line-height: 1.0; letter-spacing: -2px;
  color: var(--white); margin-bottom: 40px; max-width: 800px;
}
.hero-headline em { font-style: italic; padding-right: 0.08em; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.btn-gold {
  font-family: var(--serif);
  display: inline-block; background: var(--grad); color: #03282a;
  font-size: 15px; font-weight: 700; padding: 16px 36px;
  border-radius: 4px; text-decoration: none; letter-spacing: 0.3px;
  border: 1.5px solid transparent;
  transition: background 200ms, color 200ms, border-color 200ms; width: fit-content;
  cursor: pointer;
}
.btn-gold:hover { background: transparent; color: var(--gold); border-color: var(--gold); }

/* ── TICKER ── */
.hero-ticker-wrap {
  position: relative; z-index: 2;
  border-top: 1px solid rgba(255,255,255,0.12);
  overflow: hidden; padding: 18px 0; background: rgba(10,15,30,0.6);
}
.hero-ticker {
  display: flex; white-space: nowrap;
  animation: ticker 28s linear infinite;
}
.hero-ticker span {
  font-size: 13px; font-weight: 500; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(255,255,255,0.5);
  padding-right: 80px;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── LOGOS ── */
.logos-section {
  padding: 60px; background: var(--navy2);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.logos-label {
  font-size: 11px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gray2); text-align: center; margin-bottom: 32px;
}
.logos-grid {
  display: flex; flex-wrap: wrap; gap: 16px 48px;
  justify-content: center; align-items: center;
}
.logo-item {
  font-family: var(--serif); font-size: 20px; font-weight: 600;
  color: rgba(255,255,255,0.25); letter-spacing: 0.5px;
  transition: color 200ms;
}
.logo-item:hover { color: rgba(255,255,255,0.6); }

/* ── STATS SECTION ── */
.stats-section {
  padding: 80px 60px;
  background: var(--navy2);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.stats-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
}
.stat-item {
  padding: 48px 40px; text-align: center;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--serif); font-size: clamp(96px, 10vw, 152px);
  font-weight: 600; line-height: 1;
  display: flex; align-items: center; justify-content: center; gap: 2px;
  margin-bottom: 16px;
  background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-suffix { font-size: 0.65em; }
.stat-counter { display: inline-block; }
.stat-label {
  font-size: 12px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(255,255,255,0.4);
}
.stats-bio {
  max-width: 720px; margin: 48px auto 0;
  text-align: center;
}
.stats-bio p {
  font-family: var(--sans); font-size: 18px;
  line-height: 1.8; color: rgba(255,255,255,0.6);
}

/* ── SECTIONS COMMON ── */
.section-label {
  font-family: var(--serif);
  font-size: 11px; font-weight: 600; letter-spacing: 2.5px;
  text-transform: uppercase; margin-bottom: 16px; display: block;
  background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.section-title {
  font-family: var(--serif); font-size: clamp(36px, 4vw, 56px);
  font-weight: 800; line-height: 1.1; color: var(--white); margin-bottom: 56px;
}
.section-title em { font-style: italic; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* ── OFFER ── */
.offer-section { padding: 100px 60px; }
.offer-inner { max-width: 1200px; margin: 0 auto; }
.offer-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; }
.offer-card {
  padding: 48px; border: 1px solid rgba(255,255,255,0.06);
  transition: background 200ms;
}
.offer-card:hover { background: rgba(255,255,255,0.03); }
.offer-num {
  font-family: var(--serif); font-size: 120px; font-weight: 800;
  margin-bottom: -16px; line-height: 0.9; letter-spacing: -4px; user-select: none;
  background: linear-gradient(90deg, rgba(0,212,184,0.22) 0%, rgba(43,207,255,0.22) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.offer-card h3 { font-size: 20px; font-weight: 600; margin-bottom: 12px; color: var(--white); }
.offer-card p { font-size: 15px; color: var(--gray); line-height: 1.7; }

.btn-outline-gold {
  font-family: var(--serif);
  display: inline-block; border: 1.5px solid #00D4B8; color: #00D4B8;
  font-size: 15px; font-weight: 700; padding: 14px 32px;
  border-radius: 4px; text-decoration: none; letter-spacing: 0.3px;
  transition: background 200ms, color 200ms, border-color 200ms;
  cursor: pointer;
}
.btn-outline-gold:hover { background: var(--grad); color: #03282a; border-color: transparent; }

/* ── POSTS ── */
.posts-section { padding: 100px 60px; background: var(--navy2); }
.posts-inner { max-width: 1200px; margin: 0 auto; }
.posts-grid { display: flex; flex-direction: column; }
.post-card {
  text-decoration: none; color: inherit;
  display: grid; grid-template-columns: 1fr auto;
  align-items: center; gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: background 150ms;
}
.post-card:first-child { border-top: 1px solid rgba(255,255,255,0.07); }
.post-card-main { display: flex; flex-direction: column; gap: 10px; }
.post-card-cats { font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.post-card-title { font-family: var(--serif); font-size: 22px; font-weight: 700; line-height: 1.3; color: var(--white); transition: color 150ms; }
.post-card:hover .post-card-title { background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.post-card-meta { display: flex; align-items: center; gap: 16px; }
.post-card-date { font-size: 12px; color: var(--gray2); white-space: nowrap; }
.post-card-arrow { font-size: 20px; color: rgba(255,255,255,0.2); transition: color 200ms, transform 200ms; flex-shrink: 0; }
.post-card:hover .post-card-arrow { color: var(--gold); transform: translateX(4px); }

/* ── CTA STRIP ── */
.cta-strip {
  padding: 100px 60px; text-align: center;
  background: linear-gradient(135deg, #05080f 0%, #0a0f1e 60%, #060b16 100%);
  border-top: 1px solid rgba(0,212,184,0.25);
}
.cta-strip-title {
  font-family: var(--serif); font-size: clamp(36px, 4vw, 56px);
  font-weight: 800; color: var(--white); margin-bottom: 40px;
}
.cta-strip-title em { font-style: italic; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* ── BLOG ── */
.blog-main { padding: 120px 60px 80px; min-height: 80vh; }
.blog-container { max-width: 1200px; margin: 0 auto; }
.blog-title { font-family: var(--serif); font-size: clamp(40px, 5vw, 72px); font-weight: 800; color: var(--white); margin-bottom: 40px; line-height: 1.08; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.blog-card { display: flex; flex-direction: column; }
.blog-card-img { overflow: hidden; border-radius: 4px; margin-bottom: 20px; aspect-ratio: 16/9; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 400ms; display: block; }
.blog-card:hover .blog-card-img img { transform: scale(1.04); }
.blog-card-body { flex: 1; display: flex; flex-direction: column; }
.blog-card-cats a { font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); text-decoration: none; }
.blog-card-title { font-family: var(--serif); font-size: 22px; font-weight: 600; line-height: 1.3; color: var(--white); margin: 10px 0 12px; }
.blog-card-title a { text-decoration: none; color: inherit; transition: color 150ms; }
.blog-card-title a:hover { color: var(--gold); }
.blog-card-excerpt { font-size: 14px; color: var(--gray); line-height: 1.7; flex: 1; }
.blog-card-meta { font-size: 12px; color: var(--gray2); margin-top: 16px; }
.blog-pagination { margin-top: 64px; display: flex; gap: 8px; }
.blog-pagination .page-numbers {
  padding: 10px 16px; border: 1px solid rgba(255,255,255,0.12);
  color: var(--gray); text-decoration: none; font-size: 14px; border-radius: 4px;
  transition: all 150ms;
}
.blog-pagination .page-numbers.current,
.blog-pagination .page-numbers:hover { border-color: var(--gold); color: var(--gold); }

/* ── SINGLE ── */
.single-main { padding: 120px 60px 80px; }
.single-article { max-width: 760px; margin: 0 auto; }
.single-header { margin-bottom: 48px; }
.single-cats a { font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); text-decoration: none; }
.single-title { font-family: var(--serif); font-size: clamp(32px, 5vw, 64px); font-weight: 700; color: var(--white); margin: 16px 0 12px; line-height: 1.1; }
.single-meta { font-size: 13px; color: var(--gray2); }
.single-thumb { margin-bottom: 48px; border-radius: 4px; overflow: hidden; }
.single-thumb img { width: 100%; height: auto; display: block; }
.single-content { font-size: 17px; line-height: 1.85; color: rgba(255,255,255,0.8); }
.single-content h2 { font-family: var(--serif); font-size: 32px; font-weight: 600; color: var(--white); margin: 48px 0 20px; }
.single-content h3 { font-size: 22px; font-weight: 600; color: var(--white); margin: 36px 0 16px; }
.single-content p { margin-bottom: 24px; }
.single-content a { color: var(--gold); text-decoration: underline; }
.stats-bio a { color: var(--gold); text-decoration: underline; }
.stats-bio a:hover { opacity: 0.8; }
.single-content ul, .single-content ol { padding-left: 24px; margin-bottom: 24px; }
.single-content li { margin-bottom: 8px; }
.single-content strong { color: var(--white); font-weight: 600; }
.single-cta {
  max-width: 760px; margin: 80px auto 0;
  padding: 48px; border: 1px solid rgba(255,255,255,0.06);
  text-align: center;
}
.single-cta p { font-size: 20px; font-family: var(--sans); color: var(--white); margin-bottom: 24px; }

/* ── PAGE HERO (subpages) ── */
.page-hero {
  padding: 160px 60px 80px;
  background: linear-gradient(to bottom, var(--navy2) 0%, var(--navy) 100%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.page-hero-inner { max-width: 800px; }
.page-hero-title {
  font-family: var(--serif); font-size: clamp(40px, 5vw, 72px);
  font-weight: 800; line-height: 1.08; color: var(--white); margin: 16px 0 24px;
}
.page-hero-title em { font-style: italic; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.page-hero-desc { font-size: 18px; color: rgba(255,255,255,0.65); line-height: 1.75; max-width: 640px; }

/* ── OFERTA PAGE ── */
.oferta-section { padding: 48px 60px 80px; }
.oferta-inner { max-width: 1100px; margin: 0 auto; display: flex; flex-direction: column; gap: 0; }
.oferta-block {
  display: grid; grid-template-columns: 160px 1fr; gap: 48px;
  padding: 56px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
  align-items: start;
}
.oferta-block:last-child { border-bottom: none; }
.oferta-block-num {
  font-family: var(--serif); font-size: 120px; font-weight: 800;
  line-height: 0.9; letter-spacing: -4px; user-select: none; margin-bottom: -16px;
  background: linear-gradient(90deg, rgba(0,212,184,0.22) 0%, rgba(43,207,255,0.22) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.oferta-block-title {
  font-family: var(--serif); font-size: clamp(26px, 3vw, 36px);
  font-weight: 600; color: var(--white); margin-bottom: 20px;
}
.oferta-block-desc { font-size: 16px; color: rgba(255,255,255,0.7); line-height: 1.8; margin-bottom: 28px; }
.oferta-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.oferta-list li {
  font-size: 15px; color: rgba(255,255,255,0.65);
  padding-left: 20px; position: relative;
}
.oferta-list li::before {
  content: '→'; position: absolute; left: 0;
  color: var(--gold); font-size: 13px;
}
.oferta-link {
  display: inline-block; margin-top: 24px; color: var(--gold);
  font-size: 14px; font-weight: 600; text-decoration: none; letter-spacing: 0.3px;
  transition: color 150ms;
}
.oferta-link:hover { color: var(--gold2); }

/* ── PROCESS ── */
.process-section { padding: 100px 60px; background: var(--navy2); }
.process-inner { max-width: 1200px; margin: 0 auto; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
.process-step {
  padding: 40px 32px; border: 1px solid rgba(255,255,255,0.06);
  transition: background 200ms;
}
.process-step:hover { background: rgba(255,255,255,0.03); }
.process-step-num {
  font-family: var(--serif); font-size: 40px; font-weight: 600;
  background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 16px; line-height: 1;
}
.process-step h3 { font-size: 18px; font-weight: 600; color: var(--white); margin-bottom: 12px; }
.process-step p { font-size: 14px; color: var(--gray); line-height: 1.7; }
.cta-strip-sub { font-size: 16px; color: rgba(255,255,255,0.55); margin-bottom: 32px; }

/* ── O MNIE PAGE ── */
.about-full-section { padding: 0; border-bottom: 1px solid rgba(255,255,255,0.06); overflow: hidden; }
.about-full-inner { max-width: 100%; display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; min-height: 640px; }
.about-full-photo { position: relative; overflow: hidden; }
.about-full-photo img {
  width: 100%; height: 100%; display: block;
  object-fit: cover; object-position: center top;
}
.about-full-photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right, transparent 40%, var(--navy) 100%),
              linear-gradient(to bottom, transparent 60%, var(--navy) 100%),
              linear-gradient(to right, rgba(10,15,30,0.72) 0%, transparent 30%);
}
.about-full-bio {
  display: flex; flex-direction: column; gap: 24px;
  padding: 80px 80px 80px 40px;
  justify-content: center;
}
.about-full-bio p { font-size: 17px; color: rgba(255,255,255,0.75); line-height: 1.85; }

.brands-section { padding: 100px 60px; background: var(--navy2); }
.brands-inner { max-width: 1100px; margin: 0 auto; }
.brands-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.brand-card {
  padding: 32px; border: 1px solid rgba(255,255,255,0.06);
  transition: background 200ms;
}
.brand-card:hover { background: rgba(255,255,255,0.04); }
.brand-name { font-family: var(--serif); font-size: 22px; font-weight: 600; color: var(--white); margin-bottom: 6px; }
.brand-desc { font-size: 12px; color: var(--gray2); letter-spacing: 0.3px; }

.expertise-section { padding: 100px 60px; }
.expertise-inner { max-width: 1100px; margin: 0 auto; }
.expertise-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; }
.expertise-item {
  padding: 48px; border: 1px solid rgba(255,255,255,0.06);
  transition: background 200ms;
}
.expertise-item:hover { background: rgba(255,255,255,0.03); }
.expertise-item h3 { font-size: 20px; font-weight: 600; margin-bottom: 16px; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.expertise-item p { font-size: 15px; color: rgba(255,255,255,0.65); line-height: 1.75; }

/* ── KONTAKT PAGE ── */
.contact-section { padding: 48px 60px 32px; }
.contact-inner { max-width: 1100px; margin: 0 auto; }
.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-bottom: 32px; }
.contact-card {
  padding: 40px 36px; border: 1px solid rgba(255,255,255,0.06);
  display: flex; flex-direction: column; gap: 8px;
  transition: background 200ms;
}
.contact-card:hover { background: rgba(255,255,255,0.03); }
.contact-card-icon {
  width: 36px; height: 36px; margin-bottom: 8px;
  background: var(--grad); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
/* Mail icon */
.contact-icon-mail::before {
  content: ''; position: absolute;
  width: 18px; height: 12px;
  border: 2px solid var(--navy); border-radius: 1px;
}
.contact-icon-mail::after {
  content: ''; position: absolute;
  border: 6px solid transparent;
  border-top: 7px solid var(--navy);
  top: 10px;
}
/* Phone icon */
.contact-icon-phone::before {
  content: '';
  width: 14px; height: 14px;
  border: 2.5px solid var(--navy);
  border-radius: 50% 50% 50% 0;
  position: absolute;
  transform: rotate(-135deg);
}
/* LinkedIn icon */
.contact-icon-li::before {
  content: 'in';
  font-family: var(--sans); font-weight: 800; font-size: 14px;
  color: var(--navy); letter-spacing: 0;
}
.contact-card-label { font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--gray2); }
.contact-card-value { font-size: 15px; color: var(--white); text-decoration: none; transition: color 150ms; word-break: break-all; line-height: 1.5; }
.contact-card-value:hover { color: var(--gold); }

.contact-calendar {
  padding: 64px; border: 1px solid rgba(212,168,67,0.2);
  background: rgba(212,168,67,0.04); border-radius: 4px;
  display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center;
}
.contact-calendar-text h2 {
  font-family: var(--serif); font-size: 36px; font-weight: 600;
  color: var(--white); margin-bottom: 16px;
}
.contact-calendar-text h2 em { font-style: italic; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.contact-calendar-text p { font-size: 16px; color: rgba(255,255,255,0.65); line-height: 1.75; margin-bottom: 28px; }
.contact-calendar-note p { font-size: 14px; color: var(--gray2); line-height: 1.7; }

/* ── CONTACT CTA WITH PHOTO ── */
.contact-cta-section {
  padding: 40px 60px 100px;
  background: var(--navy);
}
.contact-cta-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 380px;
  gap: 0; align-items: stretch;
  background: linear-gradient(135deg, #0D1428 0%, #1a2340 100%);
  border: 1px solid rgba(212,168,67,0.15);
  border-radius: 4px;
  overflow: hidden;
}
.contact-cta-photo {
  background-size: cover;
  background-position: center top;
  min-height: 420px;
  position: relative;
}
.contact-cta-photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(13,20,40,0.5) 0%, transparent 60%);
}
.contact-cta-text {
  padding: 56px 40px 56px 56px;
  display: flex; flex-direction: column; gap: 20px;
}
.contact-cta-title {
  font-family: var(--serif); font-size: clamp(26px, 2.5vw, 38px);
  font-weight: 700; color: var(--white); line-height: 1.2;
}
.contact-cta-title em { font-style: normal; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* ── CONTACT FORM SECTION (2-col, no box) ── */
.contact-form-section { padding: 60px 60px 120px; background: var(--navy); }
.contact-form-inner {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.6fr; gap: 100px; align-items: start;
}
.contact-form-left { display: flex; flex-direction: column; gap: 20px; padding-top: 8px; }
.contact-form-title {
  font-family: var(--serif); font-size: clamp(32px, 3.2vw, 52px);
  font-weight: 700; color: var(--white); line-height: 1.15;
}
.contact-form-title em { font-style: italic; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.contact-form-note { font-size: 15px; color: rgba(255,255,255,0.55); line-height: 1.75; }
.contact-calendar-link {
  display: inline-block; font-size: 14px; color: var(--gold);
  text-decoration: none; transition: opacity 150ms;
  margin-top: 4px;
}
.contact-calendar-link:hover { opacity: 0.75; }

/* Contact form */
.contact-form { display: flex; flex-direction: column; gap: 12px; }
.contact-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.contact-form input,
.contact-form textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px; color: var(--white);
  font-family: var(--sans); font-size: 14px;
  padding: 14px 16px; width: 100%;
  transition: border-color 150ms;
  outline: none;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(255,255,255,0.3); }
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--gold); }
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-captcha label { font-size: 14px; color: rgba(255,255,255,0.6); }
.contact-captcha label strong { color: var(--white); font-weight: 700; }
.contact-captcha input { margin-top: 8px; }
.form-hp { position: absolute; left: -9999px; visibility: hidden; }
.contact-form-footer {
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
  margin-top: 4px;
}
.contact-calendar-link {
  font-size: 13px; color: rgba(255,255,255,0.45);
  text-decoration: none; transition: color 150ms;
}
.contact-calendar-link:hover { color: var(--gold); }
.contact-form-success {
  padding: 16px 20px; background: rgba(0,212,184,0.08);
  border: 1px solid rgba(0,212,184,0.3); border-radius: 4px;
  color: var(--gold); font-size: 15px;
}
.contact-form-error {
  padding: 16px 20px; background: rgba(200,50,50,0.1);
  border: 1px solid rgba(200,50,50,0.3); border-radius: 4px;
  color: #f87171; font-size: 14px;
}

/* Form field groups with visible labels */
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-family: var(--serif); font-size: 11px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.5);
}
.form-group label .req { color: var(--gold); margin-left: 2px; }

/* Honeypot field - hidden from humans */
.form-hp { display: none !important; }

/* Archive empty state */
.archive-empty {
  grid-column: 1 / -1; text-align: center;
  padding: 80px 40px;
  color: rgba(255,255,255,0.4);
}
.archive-empty h3 { font-family: var(--serif); font-size: 24px; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.archive-empty p { font-size: 15px; line-height: 1.7; max-width: 480px; margin: 0 auto 32px; }

/* ── PRELEKCJE PAGE ── */
.talks-section { padding: 80px 60px; }
.talks-inner { max-width: 1100px; margin: 0 auto; }
.talks-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; }
.talk-card {
  padding: 48px; border: 1px solid rgba(255,255,255,0.06);
  display: flex; flex-direction: column; gap: 12px;
  transition: background 200ms;
}
.talk-card:hover { background: rgba(255,255,255,0.03); }
.talk-num { font-family: var(--serif); font-size: 40px; font-weight: 600; color: rgba(255,255,255,0.06); line-height: 1; }
.talk-card h3 { font-size: 20px; font-weight: 600; color: var(--white); line-height: 1.35; }
.talk-card p { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.75; flex: 1; }
.talk-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 4px; }
.talk-tags span {
  font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
  padding: 4px 10px; border: 1px solid rgba(0,212,184,0.3); color: var(--gold);
  border-radius: 2px;
}

.speaking-formats { padding: 100px 60px; background: var(--navy2); }
.speaking-formats-inner { max-width: 1100px; margin: 0 auto; }
.formats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
.format-item {
  padding: 40px 32px; border: 1px solid rgba(255,255,255,0.06);
  transition: background 200ms;
}
.format-item:hover { background: rgba(255,255,255,0.03); }
.format-item h3 { font-size: 18px; font-weight: 600; color: var(--white); margin-bottom: 12px; }
.format-item p { font-size: 14px; color: var(--gray); line-height: 1.7; }

/* ── ARCHIVE ── */
.archive-main { padding: 80px 60px; min-height: 70vh; }
.archive-container { max-width: 1200px; margin: 0 auto; }
.archive-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }

.media-card { display: flex; flex-direction: column; }
.media-card-img { overflow: hidden; border-radius: 4px; margin-bottom: 20px; aspect-ratio: 16/9; }
.media-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 400ms; display: block; }
.media-card:hover .media-card-img img { transform: scale(1.04); }
.media-card-body { flex: 1; display: flex; flex-direction: column; }
.media-card-title { font-family: var(--serif); font-size: 22px; font-weight: 600; color: var(--white); margin-bottom: 12px; line-height: 1.3; }
.media-card-title a { text-decoration: none; color: inherit; transition: color 150ms; }
.media-card-title a:hover { color: var(--gold); }
.media-card-excerpt { font-size: 14px; color: var(--gray); line-height: 1.7; flex: 1; }
.media-card-footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 12px; }
.media-card-meta { font-size: 12px; color: var(--gray2); }
.media-card-source { font-size: 12px; font-weight: 600; color: var(--gold); text-decoration: none; white-space: nowrap; transition: color 150ms; }
.media-card-source:hover { color: #2BCFFF; }
.media-source-link { display: inline-block; margin-top: 12px; font-size: 14px; font-weight: 600; color: var(--gold); text-decoration: none; transition: opacity 150ms; }
.media-source-link:hover { opacity: 0.75; }
.media-source-btn { display: inline-block; margin-top: 40px; padding: 14px 32px; background: var(--grad); color: #03282a; font-size: 15px; font-weight: 700; border-radius: 4px; text-decoration: none; border: 1.5px solid transparent; transition: background 200ms, color 200ms, border-color 200ms; }
.media-source-btn:hover { background: transparent; color: var(--gold); border-color: var(--gold); }

.raport-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.raport-card { display: flex; flex-direction: column; }
.raport-card-cover { overflow: hidden; border-radius: 4px; margin-bottom: 20px; aspect-ratio: 16/9; }
.raport-card-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform 400ms; display: block; }
.raport-card:hover .raport-card-cover img { transform: scale(1.04); }
.raport-card-body { flex: 1; display: flex; flex-direction: column; }
.raport-card-title { font-family: var(--serif); font-size: 22px; font-weight: 600; color: var(--white); margin-bottom: 12px; line-height: 1.3; }
.raport-card-title a { text-decoration: none; color: inherit; transition: color 150ms; }
.raport-card-title a:hover { color: var(--gold); }
.raport-card-excerpt { font-size: 14px; color: var(--gray); line-height: 1.7; flex: 1; }
.raport-card-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 12px; }
.raport-card-date { font-size: 12px; color: var(--gray2); }
.raport-card-link { font-size: 13px; font-weight: 600; color: var(--gold); text-decoration: none; transition: color 150ms; }
.raport-card-link:hover { color: #2BCFFF; }

/* ── SINGLE back link ── */
.single-back {
  display: inline-block; font-size: 13px; color: var(--gray2);
  text-decoration: none; letter-spacing: 0.3px; margin-bottom: 24px;
  transition: color 150ms;
}
.single-back:hover { color: var(--gold); }

/* ── FOOTER ── */
.footer {
  padding: 48px 60px;
  background: #050810;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.footer-brand { font-family: var(--serif); font-size: 20px; font-weight: 600; color: var(--white); }
.footer-links { display: flex; gap: 28px; }
.footer-links a { font-size: 13px; color: var(--gray2); text-decoration: none; transition: color 150ms; }
.footer-links a:hover { color: var(--gold); }
.footer-copy { font-size: 12px; color: var(--gray2); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .nav { padding: 16px 32px; }
  .nav.scrolled { padding: 12px 32px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .hero-content { padding: 100px 32px 40px; }
  .logos-section, .about-strip, .offer-section,
  .posts-section, .cta-strip, .blog-main, .single-main,
  .page-hero, .oferta-section, .process-section, .about-full-section,
  .brands-section, .expertise-section, .contact-section, .talks-section,
  .speaking-formats, .archive-main { padding-left: 32px; padding-right: 32px; }
  .stats-inner { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); padding: 40px 24px; text-align: center; display: flex; flex-direction: column; align-items: center; }
  .stat-item:last-child { border-bottom: none; }
  .offer-grid { grid-template-columns: 1fr; }
  .posts-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .footer { padding: 40px 32px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .oferta-block { grid-template-columns: 80px 1fr; gap: 32px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .about-full-inner { grid-template-columns: 1fr; }
  .about-full-photo { min-height: 360px; }
  .about-full-photo::after { background: linear-gradient(to bottom, transparent 50%, var(--navy) 100%); }
  .about-full-bio { padding: 40px 32px 64px; }
  .brands-grid { grid-template-columns: repeat(2, 1fr); }
  .expertise-grid { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: 1fr; }
  .contact-calendar { grid-template-columns: 1fr; gap: 32px; }
  .contact-cta-section { padding: 0 32px 80px; }
  .contact-cta-inner { grid-template-columns: 1fr; }
  .contact-cta-photo { order: -1; justify-content: flex-start; padding: 32px 32px 0; }
  .contact-cta-photo img { max-width: 180px; }
  .contact-cta-text { padding: 32px; }
  .contact-form-section { padding: 40px 32px 80px; }
  .contact-form-inner { grid-template-columns: 1fr; gap: 48px; }
  .contact-form-row { grid-template-columns: 1fr; }
  .talks-grid { grid-template-columns: 1fr; }
  .formats-grid { grid-template-columns: repeat(2, 1fr); }
  .archive-grid, .raport-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .hero-headline { font-size: 42px; }
  .posts-grid, .blog-grid { grid-template-columns: 1fr; }
  .logos-grid { gap: 12px 32px; }
  .footer-links { flex-wrap: wrap; gap: 16px; }
  .oferta-block { grid-template-columns: 1fr; gap: 16px; }
  .oferta-block-num { font-size: 72px; margin-bottom: -8px; }
  .process-grid { grid-template-columns: 1fr; }
  .brands-grid { grid-template-columns: 1fr; }
  .formats-grid { grid-template-columns: 1fr; }
  .archive-grid, .raport-grid { grid-template-columns: 1fr; }
  .contact-calendar { padding: 32px; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-ticker { animation: none; }
  .hero-slide { transition: none; }
}
