/* ── FONTS ── */
@font-face {
  font-family: 'Verlag';
  src: url('/fonts/Verlag-Book/Verlag-Book.woff') format('woff');
  font-weight: 400;
}
@font-face {
  font-family: 'Verlag';
  src: url('/fonts/Verlag-Book/Verlag-Bold.woff') format('woff');
  font-weight: 700;
}

/* ── RESET & ROOT ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --dark: #273B54; --darker: #1a2735; --darkest: #0f1c28;
  --white: #ffffff; --gray: #888; --green: #0095ff;
  --dim: rgba(255,255,255,0.45); --line: rgba(255,255,255,0.07);
}
html { scroll-behavior: smooth; }
body { font-family: 'Verlag', 'Segoe UI', system-ui, sans-serif; background: var(--darkest); color: var(--white); overflow-x: hidden; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 56px; height: 64px;
  background: rgba(15,28,40,0.75); backdrop-filter: blur(12px);
}
.nav-logo img { height: 28px; object-fit: contain; }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a { color: var(--dim); text-decoration: none; font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-right { display: flex; align-items: center; gap: 28px; }
.nav-lang { font-size: 10px; font-weight: 700; letter-spacing: 3px; color: var(--dim); text-transform: uppercase; }
.nav-lang-link { color: var(--dim); text-decoration: none; transition: color 0.2s; }
.nav-lang-link:hover { color: var(--white); }
.nav-tel { font-size: 13px; color: var(--dim); text-decoration: none; font-weight: 700; transition: color 0.2s; }
.nav-tel:hover { color: var(--white); }

/* ── SHARED BUTTONS ── */
.btn-green {
  display: inline-block; background: var(--green); color: var(--white);
  padding: 18px 48px; font-weight: 700; font-size: 12px; letter-spacing: 2px;
  text-transform: uppercase; text-decoration: none; border: 2px solid var(--green); transition: all 0.2s;
}
.btn-green:hover { background: transparent; color: var(--green); }
.btn-outline {
  border: 2px solid rgba(255,255,255,0.3); color: var(--white); padding: 18px 48px;
  font-weight: 700; font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  text-decoration: none; transition: all 0.2s;
}
.btn-outline:hover { background: var(--white); color: var(--dark); border-color: var(--white); }

/* ── INDEX: HERO ── */
.hero {
  min-height: 100vh; display: flex; flex-direction: column; justify-content: center;
  padding: 100px 56px 80px; position: relative; overflow: hidden;
}
.hero-photo {
  position: absolute; inset: 0;
  background: url('/img/man.jpg') center center / cover no-repeat;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(15,28,40,0.88) 0%,
    rgba(15,28,40,0.55) 40%,
    rgba(15,28,40,0.82) 75%,
    rgba(15,28,40,0.97) 100%
  );
}
.hero-wm {
  position: absolute; right: -60px; top: 50%; transform: translateY(-50%);
  width: 600px; height: 600px; opacity: 0.08; pointer-events: none; z-index: 1;
}
.hero-topline {
  font-size: 10px; font-weight: 700; letter-spacing: 5px; text-transform: uppercase;
  color: rgba(255,255,255,0.3); margin-bottom: 48px;
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 20px; position: relative; z-index: 2;
}
.giant-type { position: relative; z-index: 2; }
.gt-line {
  display: block; font-size: clamp(72px, 10vw, 160px); line-height: 0.9;
  font-weight: 700; letter-spacing: -4px; white-space: nowrap;
}
.gt-line.thin { font-weight: 400; color: rgba(255,255,255,0.25); }
.gt-line.green { color: var(--green); }
.gt-line.outline { -webkit-text-stroke: 2px rgba(255,255,255,0.3); color: transparent; font-weight: 700; }
.hero-bottom {
  margin-top: 64px; display: flex; align-items: flex-end; justify-content: space-between; gap: 40px;
  border-top: 1px solid rgba(255,255,255,0.12); padding-top: 40px; position: relative; z-index: 2;
}
.hero-sub { font-size: 34px; color: rgba(255,255,255,0.6); line-height: 1.4; max-width: 700px; }
@media (min-width: 1200px) { .hero-sub { white-space: nowrap; max-width: none; } }
.hero-cta-wrap { display: flex; flex-direction: column; align-items: flex-end; gap: 16px; flex-shrink: 0; }

/* ── INDEX: STATS STRIP ── */
.stats { background: var(--green); display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 48px 40px; border-right: 1px solid rgba(255,255,255,0.2); }
.stat:last-child { border-right: none; }
.stat-num { font-size: clamp(44px, 5vw, 72px); font-weight: 700; line-height: 1; margin-bottom: 10px; color: var(--white); letter-spacing: -2px; }
.stat-label { font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.75); line-height: 1.5; }
.stat-note { font-size: 11px; color: rgba(255,255,255,0.45); margin-top: 4px; }

/* ── INDEX: MARQUEE PAIN STRIP ── */
.pain-strip { background: var(--green); padding: 20px 0; overflow: hidden; }
.pain-inner-track { display: flex; animation: marquee 20s linear infinite; width: max-content; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.pain-strip-item {
  display: flex; align-items: center; gap: 24px; padding: 0 40px;
  font-size: 13px; font-weight: 700; letter-spacing: 1px; color: var(--white); white-space: nowrap;
}
.pain-strip-item::before {
  content: ''; display: block; width: 8px; height: 8px;
  background: rgba(255,255,255,0.5); transform: rotate(45deg); flex-shrink: 0;
}

/* ── INDEX: SERVICES ── */
.services { background: var(--darker); }
.srv-header {
  padding: 64px 56px 40px;
  display: flex; align-items: flex-end; justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.srv-header-tag { font-size: 10px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; color: rgba(255,255,255,0.25); margin-bottom: 16px; }
.srv-header h2 { font-size: clamp(28px, 3vw, 48px); font-weight: 700; line-height: 1.1; }
.srv-row {
  display: grid; grid-template-columns: 80px 1fr;
  align-items: center; gap: 32px; padding: 36px 56px;
  border-bottom: 1px solid var(--line); transition: background 0.2s;
}
.srv-row:hover { background: rgba(255,255,255,0.03); }
.srv-row-n { font-size: 11px; font-weight: 700; letter-spacing: 3px; color: rgba(255,255,255,0.2); }
.srv-row-title { font-size: 28px; font-weight: 700; margin-bottom: 10px; }
.srv-row-desc { font-size: 18px; color: var(--dim); line-height: 1.65; }

/* ── INDEX: PHOTO + WHY SPLIT ── */
.photo-split { display: grid; grid-template-columns: 1fr 1fr; min-height: 600px; }
.photo-side {
  position: relative; overflow: hidden;
  background: url('/img/FINAL-bg.png') center/cover no-repeat;
}
.photo-side::after { content: ''; position: absolute; inset: 0; background: rgba(15,28,40,0.45); }
.photo-side--valve { background: #0a1520 url('/img/pneumatic-valve-island.svg') center/cover no-repeat; }
.photo-side--valve::after { display: none; }
.photo-side--aoi { background: #f5f7f9 url('/img/DSC04141.jpg') center/cover no-repeat; }
.photo-side--aoi::after { display: none; }
.text-side { background: var(--dark); padding: 80px 64px; display: flex; flex-direction: column; justify-content: center; }
.sec-tag { font-size: 10px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; color: var(--green); margin-bottom: 20px; }
.sec-h2 { font-size: clamp(28px, 3vw, 44px); font-weight: 700; line-height: 1.1; margin-bottom: 40px; }
.pts { display: grid; gap: 0; }
.pt { display: flex; gap: 20px; padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,0.07); align-items: center; }
.pt::before { content: ''; display: block; width: 10px; height: 10px; background: var(--green); transform: rotate(45deg); flex-shrink: 0; }
.pt:first-child { border-top: 1px solid rgba(255,255,255,0.07); }
.pn { display: none; }
.pt-text { font-size: 21px; color: rgba(255,255,255,0.75); line-height: 1.5; }

/* ── INDEX: TIMELINE ── */
.timeline-section { background: var(--darker); padding: 100px 56px; }
.timeline-label { font-size: 10px; font-weight: 700; letter-spacing: 5px; text-transform: uppercase; color: var(--green); margin-bottom: 56px; }
.timeline { display: flex; align-items: flex-start; position: relative; gap: 0; }
.tl-step { flex: 1; display: flex; flex-direction: column; align-items: center; text-align: center; position: relative; z-index: 1; padding: 0 12px; }
.tl-icon { width: 72px; height: 72px; margin-bottom: 24px; transition: filter 0.25s; }
.tl-step:hover .tl-icon { filter: drop-shadow(0 0 10px rgba(0,149,255,0.55)); }
.tl-icon img { width: 100%; height: 100%; display: block; }
.tl-title { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 8px; line-height: 1.3; }
.tl-desc { font-size: 12px; color: rgba(255,255,255,0.45); line-height: 1.6; }

.timeline-section--large .timeline-label { font-size: 20px; letter-spacing: 10px; margin-bottom: 112px; }
.timeline-section--large .tl-icon { width: 144px; height: 144px; margin-bottom: 48px; }
.timeline-section--large .tl-title { font-size: 30px; margin-bottom: 16px; }
.timeline-section--large .tl-desc { font-size: 24px; }

/* ── SHARED: PULL QUOTE ── */
.quote { background: var(--darkest); padding: 100px 56px; text-align: center; position: relative; overflow: hidden; }
.quote::before {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 128 128' width='128' height='128' fill='none'%3E%3Crect x='22' y='22' width='84' height='84' rx='10' ry='10' transform='rotate(45 64 64)' stroke='%230095ff' stroke-width='4.5' fill='none'/%3E%3Cline x1='64' y1='38' x2='64' y2='74' stroke='%230095ff' stroke-width='5' stroke-linecap='round'/%3E%3Ccircle cx='64' cy='86' r='4' fill='%230095ff'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  opacity: 0.2;
  pointer-events: none;
}
.quote-text { font-size: clamp(36px, 5vw, 80px); font-weight: 700; line-height: 0.9; max-width: 900px; margin: 0 auto; position: relative; z-index: 1; letter-spacing: -2px; }
.quote--logo-right::before { background-position: right center; }
.quote--logo-right { text-align: center; }
.quote--logo-right .quote-text { margin: 0 auto; }
.quote--target::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 128 128' width='128' height='128' fill='none'%3E%3Crect x='22' y='22' width='84' height='84' rx='10' ry='10' transform='rotate(45 64 64)' stroke='%230095ff' stroke-width='4.5' fill='none'/%3E%3Ccircle cx='64' cy='64' r='22' stroke='%230095ff' stroke-width='4.5' fill='none'/%3E%3Ccircle cx='64' cy='64' r='12' stroke='%230095ff' stroke-width='4.5' fill='none'/%3E%3Ccircle cx='64' cy='64' r='4' fill='%230095ff'/%3E%3C/svg%3E"); }
.quote--crosshair::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 128 128' width='128' height='128' fill='none'%3E%3Crect x='22' y='22' width='84' height='84' rx='10' ry='10' transform='rotate(45 64 64)' stroke='%230095ff' stroke-width='4.5' fill='none'/%3E%3Cpath d='M 84,55 A 22,22 0 1,1 73,44' stroke='%230095ff' stroke-width='4.5' stroke-linecap='round' fill='none'/%3E%3Cpath d='M 76,62 A 12,12 0 1,1 66,52' stroke='%230095ff' stroke-width='4.5' stroke-linecap='round' fill='none'/%3E%3Cline x1='64' y1='64' x2='87' y2='41' stroke='%230095ff' stroke-width='4.5' stroke-linecap='round'/%3E%3Cpath d='M 81,47 L 87,41 L 87,33 Z' fill='%230095ff'/%3E%3Cpath d='M 81,47 L 87,41 L 95,41 Z' fill='%230095ff'/%3E%3C/svg%3E"); }
.quote--crosshair.quote--logo-right::before { background-position: right center; }
.quote--phone::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 128 128' width='128' height='128' fill='none'%3E%3Crect x='22' y='22' width='84' height='84' rx='10' ry='10' transform='rotate(45 64 64)' stroke='%230095ff' stroke-width='4.5' fill='none'/%3E%3Cpath d='M 44 46 C 44 44 46 42 48 42 L 54 42 C 55.5 42 56.5 43 57 44.5 L 59.5 51.5 C 60 53 59.5 54.5 58 55.5 L 55 57.5 C 57.5 63 63 68.5 68.5 71 L 70.5 68 C 71.5 66.5 73 66 74.5 66.5 L 81.5 69 C 83 69.5 84 70.5 84 72 L 84 78 C 84 80 82 82 80 82 C 60 82 44 66 44 46 Z' stroke='%230095ff' stroke-width='4' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E"); }
.quote-text em { font-style: normal; color: var(--green); }
.quote-attr { margin-top: 32px; font-size: 13px; color: var(--dim); position: relative; z-index: 1; }

/* ── SHARED: CTA ── */

.cta { background: var(--dark); padding: 100px 56px; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.cta-left h2 { font-size: clamp(28px, 3.5vw, 56px); font-weight: 700; line-height: 1.05; letter-spacing: -1px; margin-bottom: 12px; }
.cta-left h2 em { font-style: normal; color: var(--green); }
.cta-left p { font-size: 16px; color: var(--dim); }
.cta-right { flex-shrink: 0; display: flex; flex-direction: column; align-items: flex-end; gap: 16px; }
.cta-contact { color: var(--dim); font-size: 13px; }
.cta-contact a { color: rgba(255,255,255,0.65); text-decoration: none; }

/* ── MAP ── */
.map-section { display: grid; grid-template-columns: 1fr 1fr; min-height: 540px; background: var(--darkest); }
.map-section-map { width: 100%; height: 100%; min-height: 540px; }
.map-section-text { padding: 80px 64px; display: flex; flex-direction: column; justify-content: center; background: #daeaf1; border-left: none; }
.map-section-text .sec-tag { color: var(--darkest); opacity: 0.6; }
.map-section-text h2 { font-size: clamp(28px, 3vw, 44px); font-weight: 700; line-height: 1.1; margin-bottom: 28px; color: var(--darkest); }
.map-section-text p { font-size: 14px; color: var(--darkest); opacity: 0.7; line-height: 1.8; max-width: 360px; }

/* ── CONTACT ── */
.contact { background: var(--darker); padding: 100px 56px; }
.contact-heading { font-size: clamp(28px, 3.5vw, 56px); font-weight: 700; line-height: 1.05; letter-spacing: -1px; margin-bottom: 64px; white-space: nowrap; }
.contact-heading em { font-style: normal; color: var(--green); }
.contact-body { display: grid; grid-template-columns: 1fr 1.8fr; gap: 80px; align-items: start; }
.contact-left h2 { font-size: clamp(28px, 3vw, 44px); font-weight: 700; line-height: 1.1; margin-bottom: 20px; }
.contact-left p { font-size: 17px; color: var(--dim); line-height: 1.75; margin-bottom: 40px; }
.contact-direct { display: flex; flex-direction: column; gap: 10px; padding-top: 40px; border-top: 1px solid var(--line); }
.contact-direct a { text-decoration: none; transition: color 0.2s; }
.contact-direct a:first-child { font-size: 22px; font-weight: 700; color: var(--white); }
.contact-direct a:last-child { font-size: 16px; color: var(--dim); }
.contact-direct a:hover { color: var(--green); }
.contact-form { display: flex; flex-direction: column; gap: 0; }
.contact-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0 32px; }
.contact-field { border-bottom: 1px solid rgba(255,255,255,0.12); margin-bottom: 28px; position: relative; }
.contact-field:focus-within { border-bottom-color: var(--green); }
.contact-field input,
.contact-field select,
.contact-field textarea { background: var(--darker); border: none; color: var(--white); font-family: inherit; font-size: 16px; padding: 14px 0; outline: none; width: 100%; }
.contact-field input:-webkit-autofill,
.contact-field input:-webkit-autofill:hover,
.contact-field input:-webkit-autofill:focus { -webkit-box-shadow: 0 0 0 1000px var(--darker) inset; -webkit-text-fill-color: var(--white); caret-color: var(--white); }
.contact-field input::placeholder,
.contact-field textarea::placeholder { color: rgba(255,255,255,0.3); }
.contact-field select { appearance: none; cursor: pointer; color: rgba(255,255,255,0.3); }
.contact-field select:valid { color: var(--white); }
.contact-field select option { background: var(--dark); color: var(--white); }
.contact-field textarea { resize: vertical; min-height: 100px; }
.contact-checks { display: flex; flex-direction: column; gap: 16px; margin-bottom: 36px; }
.contact-check { display: flex; gap: 14px; align-items: flex-start; cursor: pointer; }
.contact-check input[type="checkbox"] { display: none; }
.contact-check-box { width: 14px; height: 14px; border: 1px solid rgba(255,255,255,0.25); flex-shrink: 0; margin-top: 2px; transform: rotate(45deg); transition: all 0.15s; }
.contact-check input:checked ~ .contact-check-box { background: var(--green); border-color: var(--green); }
.contact-check-label { font-size: 16px; color: rgba(255,255,255,0.4); line-height: 1.65; }
.contact-bottom { display: flex; justify-content: flex-end; gap: 16px; align-items: center; }
.contact-msg { padding: 14px 20px; margin-bottom: 28px; font-size: 13px; font-weight: 700; letter-spacing: 0.5px; }
.contact-msg--ok { background: rgba(0,149,255,0.1); border: 1px solid rgba(0,149,255,0.3); color: var(--green); }
.contact-msg--err { background: rgba(220,38,38,0.1); border: 1px solid rgba(220,38,38,0.3); color: #f87171; }

/* ── ROLUNK: PAGE HERO ── */
.page-hero { min-height: 50vh; display: flex; flex-direction: column; justify-content: flex-end; padding: 100px 56px 64px; position: relative; overflow: hidden; background: var(--darker); }
.page-hero-wm { position: absolute; right: -60px; top: 50%; transform: translateY(-50%); width: 500px; height: 500px; opacity: 0.05; pointer-events: none; z-index: 1; }
.page-hero-tag { font-size: 10px; font-weight: 700; letter-spacing: 5px; text-transform: uppercase; color: var(--green); margin-bottom: 24px; position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(48px, 8vw, 120px); font-weight: 700; line-height: 0.95; letter-spacing: -3px; position: relative; z-index: 2; }
.page-hero h1 span { color: var(--green); }
.page-hero-sub { margin-top: 40px; padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.12); font-size: 18px; color: var(--dim); line-height: 1.7; max-width: 700px; position: relative; z-index: 2; }

/* ── ROLUNK: INTRO ── */
.intro { background: var(--darkest); padding: 100px 56px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.intro-quote { font-size: clamp(22px, 2.5vw, 32px); font-weight: 700; line-height: 1.4; letter-spacing: -0.5px; position: relative; padding-left: 32px; }
.intro-quote::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--green); }
.intro-body { font-size: 15px; color: rgba(255,255,255,0.7); line-height: 1.8; }
.intro-body p + p { margin-top: 20px; }
.intro-highlight { display: inline-block; margin-top: 24px; padding: 12px 24px; background: rgba(0,149,255,0.08); border: 1px solid rgba(0,149,255,0.2); font-size: 14px; font-weight: 700; color: var(--green); letter-spacing: 1px; }

/* ── ROLUNK: TEAM ── */
.team-section { background: var(--darker); padding: 100px 56px; }
.team-header { margin-bottom: 64px; padding-bottom: 40px; border-bottom: 1px solid var(--line); }
.team-header-tag { font-size: 10px; font-weight: 700; letter-spacing: 5px; text-transform: uppercase; color: var(--green); margin-bottom: 20px; }
.team-header h2 { font-size: clamp(48px, 7vw, 100px); font-weight: 700; line-height: 0.95; letter-spacing: -3px; text-transform: uppercase; }
.team-list { display: flex; flex-direction: column; }
.team-row { display: grid; grid-template-columns: 1fr 1fr; align-items: center; padding: 48px 0; border-bottom: 1px solid var(--line); }
.team-row:first-child { border-top: 1px solid var(--line); }
.team-photo-side { display: flex; align-items: center; gap: 32px; }
.team-row:nth-child(odd) .team-photo-side { justify-content: space-between; padding-right: 48px; }
.team-row:nth-child(even) .team-photo-side { justify-content: space-between; padding-left: 48px; order: 2; }
.team-row:nth-child(even) .team-text-side { order: 1; }
.diamond-frame { width: 330px; height: 330px; position: relative; flex-shrink: 0; }
.diamond-frame .frame-photo { position: absolute; z-index: 1; width: 220px; height: 220px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.diamond-frame .frame-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 15%; filter: grayscale(30%); transition: filter 0.4s; }
.team-row:hover .diamond-frame .frame-photo img { filter: grayscale(0%); }
.diamond-frame .frame-overlay { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 2; }
.diamond-frame.variant-enlarge-fade .frame-photo { width: 280px; height: 280px; -webkit-mask-image: radial-gradient(circle, #000 45%, transparent 70%); mask-image: radial-gradient(circle, #000 45%, transparent 70%); }
.team-name-block { display: flex; flex-direction: column; justify-content: center; }
.team-row:nth-child(odd) .team-name-block { text-align: left; }
.team-row:nth-child(even) .team-name-block { text-align: right; order: 2; }
.team-row:nth-child(even) .team-photo-side .diamond-frame { order: 1; }
.team-text-side { display: flex; flex-direction: column; justify-content: center; }
.team-row:nth-child(odd) .team-text-side { padding: 0 48px 0 24px; }
.team-row:nth-child(even) .team-text-side { padding: 0 24px 0 48px; }
.team-name { font-size: clamp(56px, 6vw, 80px); font-weight: 700; margin-bottom: 8px; text-transform: uppercase; letter-spacing: -1px; line-height: 1.05; }
.team-name .name-outline { -webkit-text-stroke: 2px rgba(255,255,255,0.3); color: transparent; font-weight: 700; letter-spacing: -3px; }
.team-name .name-green { color: var(--green); letter-spacing: -2px; }
.team-role { font-size: 18px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--green); margin-bottom: 24px; }
.team-bio { font-size: 28px; color: rgba(255,255,255,0.65); line-height: 1.7; }

/* ── ROLUNK: COMPANY INFO ── */
.info-split { display: grid; grid-template-columns: 1fr 1fr; min-height: 400px; }
.info-left { background: var(--dark); padding: 80px 64px; display: flex; flex-direction: column; justify-content: center; }
.info-right { background: var(--darkest); padding: 80px 64px; display: flex; flex-direction: column; justify-content: center; }
.info-tag { font-size: 10px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; color: var(--green); margin-bottom: 20px; }
.info-h3 { font-size: 24px; font-weight: 700; margin-bottom: 32px; line-height: 1.2; }
.info-item { display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--line); font-size: 14px; }
.info-item:first-of-type { border-top: 1px solid var(--line); }
.info-label { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.3); min-width: 100px; padding-top: 2px; }
.info-value { color: rgba(255,255,255,0.75); line-height: 1.5; }
.info-value a { color: var(--green); text-decoration: none; transition: color 0.2s; }
.info-value a:hover { color: var(--white); }

/* ── FOOTER ── */
.sf-wrap { background: #0f1c28; border-top: 1px solid rgba(255,255,255,0.07); }
.sf-inner { display: grid; grid-template-columns: 1.4fr 1fr 1.4fr 1.4fr 1fr; border-bottom: 1px solid rgba(255,255,255,0.07); }
.sf-col { padding: 56px 40px; border-right: 1px solid rgba(255,255,255,0.07); }
.sf-col:last-child { border-right: none; }
.sf-label { font-size: 10px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; color: var(--green); margin-bottom: 24px; }
.sf-items { display: flex; flex-direction: column; gap: 12px; }
.sf-items a, .sf-items span { font-size: 13px; color: rgba(255,255,255,0.45); text-decoration: none; line-height: 1.5; transition: color 0.2s; }
.sf-items a:hover { color: var(--white); }
.sf-col-brand { display: flex; flex-direction: column; justify-content: center; align-items: flex-start; }
.sf-brand-logo { height: 28px; object-fit: contain; opacity: 0.5; margin-bottom: 20px; }
.sf-brand-desc { font-size: 13px; color: rgba(255,255,255,0.3); line-height: 1.7; max-width: 200px; }
.sf-bottom { display: flex; align-items: center; justify-content: space-between; padding: 24px 40px; }
.sf-copy { font-size: 11px; color: rgba(255,255,255,0.18); }
.sf-location { font-size: 10px; font-weight: 700; letter-spacing: 5px; text-transform: uppercase; color: rgba(255,255,255,0.25); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .intro { grid-template-columns: 1fr; gap: 40px; }
  .info-split, .photo-split { grid-template-columns: 1fr; }
  .photo-split .text-side { order: 1; }
  .photo-split .photo-side { order: 2; min-height: 300px; }
  .sf-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .stats { grid-template-columns: 1fr 1fr; }
  .stat { padding: 32px 24px; }
  nav { padding: 0 24px; }
  .hero { padding: 100px 24px 60px; }
  .srv-header, .srv-row { padding-left: 24px; padding-right: 24px; }
  .text-side { padding: 60px 24px; }
  .timeline-section { padding: 60px 24px; }
  .timeline { flex-direction: column; align-items: center; gap: 40px; }
  .quote, .cta { padding: 60px 24px; }
  .cta { flex-direction: column; text-align: center; }
  .cta-right { align-items: center; }
  .page-hero { padding: 100px 24px 48px; }
  .intro { padding: 60px 24px; }
  .team-section { padding: 60px 24px; }
  .team-row { grid-template-columns: 1fr; padding: 40px 0; }
  .team-row:nth-child(odd) .team-photo-side,
  .team-row:nth-child(even) .team-photo-side { justify-content: center; padding: 0; order: 0; }
  .team-row:nth-child(odd) .team-text-side,
  .team-row:nth-child(even) .team-text-side { order: 1; padding: 24px 0 0; text-align: center !important; }
  .diamond-frame { width: 240px; height: 240px; }
  .info-left, .info-right { padding: 48px 24px; }
  .sf-inner { grid-template-columns: 1fr; }
  .sf-col { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); padding: 40px 24px; }
}

/* ── REFERENCES ── */
.ref-intro { background: var(--darker); padding: 64px 56px; border-bottom: 1px solid var(--line); font-size: 16px; color: var(--dim); max-width: 700px; }
.ref-grid { display: grid; grid-template-columns: repeat(3, 1fr); background: var(--line); gap: 1px; }
.ref-card { background: var(--darker); padding: 64px 48px; display: flex; flex-direction: column; transition: background 0.2s; }
.ref-card:hover { background: #1f3045; }
.ref-card-num { font-size: 10px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; color: var(--green); margin-bottom: 32px; }
.ref-card-title { font-size: clamp(20px, 2vw, 28px); font-weight: 700; line-height: 1.2; margin-bottom: 20px; }
.ref-card-desc { font-size: 14px; color: var(--dim); line-height: 1.75; flex: 1; }

/* ── WORKS (korábbi munkáink) ── */
.works-section { background: var(--dark); padding: 100px 56px; }
.works-header { text-align: center; margin-bottom: 72px; }
.works-header-h2 { text-transform: uppercase; white-space: nowrap; margin: 0; }
.works-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.work-card { display: flex; flex-direction: column; align-items: center; text-align: center; text-decoration: none; color: inherit; transition: transform 0.3s ease; }
.work-card:hover { transform: translateY(-6px); }
.works-diamond { width: 360px; height: 360px; position: relative; flex-shrink: 0; margin: 0 auto 28px; }
.works-diamond .frame-photo { position: absolute; z-index: 1; width: 270px; height: 270px; top: 50%; left: 50%; transform: translate(-50%, -50%); -webkit-mask-image: radial-gradient(circle, #000 42%, transparent 68%); mask-image: radial-gradient(circle, #000 42%, transparent 68%); }
.works-diamond .frame-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: grayscale(30%); transition: filter 0.4s; }
.work-card:hover .works-diamond .frame-photo img { filter: grayscale(0%); }
.works-diamond .frame-overlay { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 2; }
.work-date { font-size: 15px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.25); margin-bottom: 12px; }
.work-title { font-size: 30px; font-weight: 700; line-height: 1.25; margin-bottom: 16px; max-width: 380px; color: var(--white); }
.work-excerpt { font-size: 21px; color: var(--dim); line-height: 1.7; margin-bottom: 22px; max-width: 380px; }
.work-link { font-size: 17px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--green); transition: color 0.2s; }
.work-card:hover .work-link { color: var(--white); }
.works-footer { text-align: center; margin-top: 64px; }

/* ── ALT page: light section overrides ── */
.works-section--light { background: #eef3f7; }
.works-section--light .works-header-h2 { color: var(--darkest); }
.works-section--light .work-date { color: rgba(15,28,40,0.35); }
.works-section--light .work-title { color: var(--darkest); }
.works-section--light .work-excerpt { color: #3a4e62; }
.works-section--light .work-link { color: var(--green); }
.works-section--light .work-card:hover .work-link { color: var(--darkest); }

.text-side--light { background: #eef3f7; }
.text-side--light .sec-h2 { color: var(--darkest); }
.text-side--light .pt-text { color: #2e4055; }

/* Dark-on-light button variant */
.btn-green-dark { display: inline-block; padding: 14px 32px; border: 2px solid var(--darkest); color: var(--darkest); font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; text-decoration: none; transition: background 0.2s, color 0.2s; }
.btn-green-dark:hover { background: var(--darkest); color: var(--white); }

/* ── BLOG ── */
.blog-rows { background: var(--darker); padding: 0 56px; }
.blog-entry { display: grid; grid-template-columns: 1fr 1fr; align-items: center; padding: 80px 0; border-bottom: 1px solid var(--line); gap: 0; }
.blog-entry:first-child { border-top: 1px solid var(--line); }
/* odd: text left, image right */
.blog-entry:nth-child(odd) .blog-entry-media { order: 2; display: flex; justify-content: center; }
.blog-entry:nth-child(odd) .blog-entry-text { order: 1; padding: 0 56px 0 0; }
/* even: image left, text right */
.blog-entry:nth-child(even) .blog-entry-media { order: 1; display: flex; justify-content: center; }
.blog-entry:nth-child(even) .blog-entry-text { order: 2; padding: 0 0 0 56px; }
.blog-entry-diamond { width: 580px; height: 580px; position: relative; flex-shrink: 0; }
.blog-entry-diamond .frame-photo { position: absolute; z-index: 1; width: 440px; height: 440px; top: 50%; left: 50%; transform: translate(-50%, -50%); -webkit-mask-image: radial-gradient(circle, #000 45%, transparent 70%); mask-image: radial-gradient(circle, #000 45%, transparent 70%); }
.blog-entry-diamond .frame-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: grayscale(20%); transition: filter 0.4s; }
.blog-entry:hover .blog-entry-diamond .frame-photo img { filter: grayscale(0%); }
.blog-entry-diamond .frame-overlay { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 2; }
.blog-date { font-size: 24px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.25); line-height: 1.8; margin-bottom: 16px; }
.blog-title { font-size: clamp(20px, 2vw, 32px); font-weight: 700; margin-bottom: 24px; line-height: 1.15; letter-spacing: -0.5px; }
.blog-excerpt { font-size: 28px; color: var(--dim); line-height: 1.75; margin-bottom: 32px; }
.blog-tags { display: flex; gap: 16px; flex-wrap: wrap; }
.blog-tag { font-size: 20px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--green); text-decoration: none; transition: color 0.2s; }
.blog-tag:hover { color: var(--white); }
.blog-section-title { font-size: 16px; font-weight: 700; color: var(--white); margin: 32px 0 10px; letter-spacing: -0.2px; }
.blog-list-items { font-size: 14px; color: var(--dim); line-height: 1.75; margin: 0 0 20px 24px; }
.blog-list-items li { margin-bottom: 8px; }
code { font-family: 'Courier New', monospace; font-size: 12px; background: rgba(0,149,255,0.1); color: var(--green); padding: 2px 6px; border-radius: 3px; }

/* ── LEGAL / CONTENT PAGES ── */
.content-section { background: var(--darkest); padding: 80px 56px; }
.content-inner { max-width: 860px; margin: 0 auto; }
.content-h2 { font-size: clamp(18px, 1.8vw, 24px); font-weight: 700; color: var(--white); margin: 52px 0 16px; padding-bottom: 14px; border-bottom: 1px solid var(--line); letter-spacing: -0.3px; }
.content-h2:first-child { margin-top: 0; }
.content-h3 { font-size: 14px; font-weight: 700; color: var(--green); letter-spacing: 1px; text-transform: uppercase; margin: 28px 0 8px; }
.content-p { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.85; margin-bottom: 14px; }
.content-p a { color: var(--green); text-decoration: none; }
.content-p a:hover { color: var(--white); }
.content-list { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.85; margin: 8px 0 16px 24px; }
.content-list li { margin-bottom: 6px; }
.content-data { display: grid; grid-template-columns: 200px 1fr; margin: 16px 0 32px; }
.content-data-label { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.3); padding: 14px 0; border-bottom: 1px solid var(--line); display: flex; align-items: center; }
.content-data-value { font-size: 14px; color: rgba(255,255,255,0.7); padding: 14px 0 14px 24px; border-bottom: 1px solid var(--line); line-height: 1.6; }
.content-data-value a { color: var(--green); text-decoration: none; }
.content-table { width: 100%; border-collapse: collapse; margin: 16px 0 28px; }
.content-table th { text-align: left; font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--green); padding: 14px 16px; border-bottom: 2px solid rgba(0,149,255,0.3); }
.content-table td { padding: 14px 16px; font-size: 13px; color: rgba(255,255,255,0.65); border-bottom: 1px solid var(--line); vertical-align: top; line-height: 1.6; }
.content-table tr:last-child td { border-bottom: none; }

@media (max-width: 768px) {
  .ref-grid { grid-template-columns: 1fr; }
  .ref-card { padding: 48px 24px; }
  .works-section { padding: 72px 24px; }
  .works-grid { grid-template-columns: 1fr; gap: 56px; }
  .works-diamond { width: 280px; height: 280px; }
  .works-diamond .frame-photo { width: 210px; height: 210px; }
  .blog-rows { padding: 0 24px; }
  .blog-entry { grid-template-columns: 1fr; padding: 48px 0; }
  .blog-entry:nth-child(odd) .blog-entry-media,
  .blog-entry:nth-child(even) .blog-entry-media { order: 0; justify-content: center; }
  .blog-entry:nth-child(odd) .blog-entry-text,
  .blog-entry:nth-child(even) .blog-entry-text { order: 1; padding: 24px 0 0; }
  .blog-entry-diamond { width: 280px; height: 280px; }
  .blog-entry-diamond .frame-photo { width: 220px; height: 220px; }
  .blog-excerpt { font-size: 16px; }
  .blog-tag { font-size: 14px; }
  .content-section { padding: 60px 24px; }
  .content-data { grid-template-columns: 1fr; }
  .content-data-label { border-bottom: none; padding-bottom: 2px; }
  .content-table { font-size: 12px; }
  .content-table th, .content-table td { padding: 10px 8px; }
}

/* ── MOBILE: HAMBURGER NAV ── */
.nav-burger { display: none; background: none; border: none; cursor: pointer; padding: 8px; z-index: 201; flex-direction: column; gap: 5px; }
.nav-burger span { display: block; width: 24px; height: 2px; background: var(--white); transition: all 0.3s; }

@media (max-width: 768px) {
  .nav-burger { display: flex; }
  .nav-links, .nav-right { display: none; position: fixed; top: 64px; left: 0; right: 0; background: rgba(15,28,40,0.97); backdrop-filter: blur(12px); flex-direction: column; padding: 32px 24px; gap: 24px; z-index: 199; }
  .nav-right { top: auto; border-top: 1px solid var(--line); }
  nav.nav-open .nav-links,
  nav.nav-open .nav-right { display: flex; }
  nav.nav-open .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  nav.nav-open .nav-burger span:nth-child(2) { opacity: 0; }
  nav.nav-open .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav-links a { font-size: 16px; letter-spacing: 3px; }

  /* ── MOBILE: HERO ── */
  .gt-line.outline { font-size: clamp(43px, 6vw, 96px); }
  .hero-bottom { flex-direction: column; align-items: flex-start; gap: 24px; }
  .hero-sub { font-size: 18px; white-space: normal !important; }
  .hero-cta-wrap { align-items: flex-start; }

  /* ── MOBILE: STATS ── */
  .stat-num { font-size: 36px; }

  /* ── MOBILE: PHOTO + WHY SPLIT ── */
  .photo-split { grid-template-columns: 1fr; }
  .photo-split .text-side { order: 1; }
  .photo-split .photo-side { order: 2; min-height: 300px; }
  .pt { padding: 8px 0; gap: 12px; align-items: center; }
  .pt-text { font-size: 16px; }
  .sec-h2 { white-space: normal !important; font-size: clamp(22px, 6vw, 32px); }

  /* ── MOBILE: TIMELINE LARGE ── */
  .timeline-section--large .tl-icon { width: 80px; height: 80px; margin-bottom: 20px; }
  .timeline-section--large .tl-title { font-size: 18px; margin-bottom: 8px; }
  .timeline-section--large .tl-desc { font-size: 14px; }
  .timeline-section--large .sec-h2 { white-space: normal !important; font-size: clamp(20px, 5vw, 28px); text-align: center; }

  /* ── MOBILE: WORKS — show only 1 card ── */
  .works-grid .work-card:nth-child(n+2) { display: none; }
  .works-diamond { width: 260px; height: 260px; }
  .works-diamond .frame-photo { width: 195px; height: 195px; }
  .work-title { font-size: 22px; }
  .work-excerpt { font-size: 16px; }

  /* ── MOBILE: MAP SECTION ── */
  .map-section { grid-template-columns: 1fr; }
  .map-section-map { min-height: 300px; }
  .map-section-text { padding: 48px 24px; }
  .map-section-text h2 { font-size: clamp(22px, 6vw, 32px); }

  /* ── MOBILE: CONTACT ── */
  .contact { padding: 60px 24px; }
  .contact-heading { font-size: clamp(22px, 6vw, 32px); white-space: normal; }
  .contact-body { grid-template-columns: 1fr; gap: 48px; }
  .contact-left p { font-size: 18px; }
  .contact-left p br { display: none; }
  .contact-row { grid-template-columns: 1fr; gap: 0; }
  .contact-bottom { flex-direction: column; gap: 12px; }
  .contact-bottom .btn-green,
  .contact-bottom .btn-outline { width: 100%; text-align: center; }

  /* ── MOBILE: BUTTONS ── */
  .btn-green, .btn-outline { padding: 16px 32px; font-size: 11px; }
}
