/* Dijagnostika 2000 — Landing Page CSS */

@font-face {
  font-family: 'Metropolis';
  src: url('https://cdn.jsdelivr.net/gh/dw5/Metropolis@master/src/Metropolis-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Metropolis';
  src: url('https://cdn.jsdelivr.net/gh/dw5/Metropolis@master/src/Metropolis-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}




/* ── HERO LOGO ───────────────────────────── */
.hero-logo-wrap { margin-bottom: 28px; }
.hero-logo-img  { height: 64px; width: auto; display:block; filter: brightness(1); }

/* ── TOP ANNOUNCEMENT BAR ────────────────── */
.top-bar {
  background: #E8491E;
  padding: 9px 6vw;
  text-align: center;
  font-family:'Metropolis','DM Sans',sans-serif;
  font-size: 13px; font-weight: 700;
  color: var(--white);
  letter-spacing: .08em; text-transform: uppercase;
  position: fixed; top:0; left:0; right:0; z-index:101;
}
.contact-bar {
  background: var(--white);
  border-bottom: 1px solid rgba(0,0,0,.08);
  padding: 8px 6vw;
  display: flex; align-items:center; justify-content:space-between;
  position: fixed; top:38px; left:0; right:0; z-index:100;
}
.contact-bar-social { display:flex; gap:12px; align-items:center; }
.contact-bar-social a {
  color: #333; text-decoration:none;
  display:flex; align-items:center;
  transition: color .2s;
}
.contact-bar-social a:hover { color: var(--blue); }
.contact-bar-right {
  display:flex; gap:20px; align-items:center;
  font-size:13px; color:#444; font-weight:400;
}
.contact-bar-right a { color:#444; text-decoration:none; }
.contact-bar-right a:hover { color:var(--blue); }
.contact-bar-right span { font-weight:700; color:#222; }


/* ── BRAND PALETTE ─────────────────────────────────────────
   Primary:    #0099FF  (brand blue)   #CC0000 (brand red – accents)
   Secondary:  #4CA5E5  (light blue)   #56BAD2 (teal/cyan)
   Dark bg:    #0A1628  (deep navy for sections)
   ─────────────────────────────────────────────────────────── */
:root {
  --blue:      #0099FF;
  --blue-dark: #0077CC;
  --blue-deep: #005599;
  --red:       #CC0000;
  --sec-blue:  #4CA5E5;
  --sec-teal:  #56BAD2;
  --navy:      #0A1628;
  --navy-mid:  #0D1E36;
  --navy-card: rgba(255,255,255,0.05);
  --cream:     #F4F7FB;
  --white:     #FFFFFF;
  --text:      #1A1A2E;
  --text-muted:#5A6A7A;
  --warm-gray: #A8B8C8;
  --border:    rgba(0,153,255,0.15);
  --grad:      linear-gradient(135deg, #56BAD2 0%, #4CA5E5 100%);
  --grad-rev:  linear-gradient(135deg, #4CA5E5 0%, #56BAD2 100%);
}

*, *::before, *::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; }
body {
  font-family: 'Metropolis', 'DM Sans', sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
}

/* ── HERO ───────────────────────────────── */
.hero {
  background: var(--navy);
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content:'';
  position:absolute; top:-200px; right:-100px;
  width:600px; height:600px;
  background: radial-gradient(circle, rgba(0,153,255,0.15) 0%, transparent 70%);
  pointer-events:none;
}
.hero::after {
  content:'';
  position:absolute; bottom:-100px; left:25%;
  width:450px; height:450px;
  background: radial-gradient(circle, rgba(86,186,210,0.08) 0%, transparent 70%);
  pointer-events:none;
}
.hero-left {
  padding: 130px 48px 64px 6vw;
  display:flex; flex-direction:column; justify-content:center;
  position:relative; z-index:2;
  animation: fadeUp .6s ease both;
}
.hero-badge {
  display:inline-flex; align-items:center; gap:8px;
  background: rgba(0,153,255,0.12);
  border: 1px solid rgba(0,153,255,0.30);
  color: var(--sec-blue);
  font-size:11px; font-weight:700; letter-spacing:.1em; text-transform:uppercase;
  padding:6px 14px; border-radius:2px; margin-bottom:28px; width:fit-content;
}
.hero-badge::before {
  content:''; width:6px; height:6px;
  background: var(--blue); border-radius:50%;
}
.hero-headline {
  font-family:'Metropolis','DM Sans',sans-serif;
  font-size: clamp(34px, 3.8vw, 58px);
  font-weight:700; color:var(--white); line-height:1.08;
  margin-bottom:22px;
  letter-spacing:-0.01em;
}
.hero-headline em {
  font-style:normal;
  background: var(--grad);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent;
  background-clip:text;
}
.hero-sub {
  font-size:17px; color:var(--warm-gray); line-height:1.7;
  max-width:420px; margin-bottom:32px; font-weight:400;
}
.hero-price {
  display:flex; align-items:baseline; gap:8px;
  margin-bottom:10px;
}
.hero-price-label { font-size:14px; color:var(--warm-gray); }
.hero-price-val {
  font-size:52px; font-weight:700; color:var(--white); line-height:1;
  letter-spacing:-0.02em;
}
.hero-price-sub {
  font-size:13px; color:var(--sec-teal); font-weight:700;
  letter-spacing:.04em; text-transform:uppercase;
  margin-bottom:32px;
}
.hero-cta-group { display:flex; gap:12px; flex-wrap:wrap; }

.btn-primary {
  background: var(--blue);
  color:var(--white); border:none;
  padding:15px 30px; border-radius:2px;
  font-family:'Metropolis','DM Sans',sans-serif;
  font-size:14px; font-weight:700; letter-spacing:.04em; text-transform:uppercase;
  cursor:pointer; text-decoration:none; display:inline-block;
  transition:background .2s, transform .15s;
}
.btn-primary:hover { background:var(--blue-dark); transform:translateY(-1px); }

.btn-outline {
  background:transparent; color:var(--white);
  border:1px solid rgba(255,255,255,0.2);
  padding:15px 30px; border-radius:2px;
  font-family:'Metropolis','DM Sans',sans-serif;
  font-size:14px; font-weight:400; letter-spacing:.04em; text-transform:uppercase;
  cursor:pointer; text-decoration:none; display:inline-block;
  transition:border-color .2s, transform .15s;
}
.btn-outline:hover { border-color:rgba(255,255,255,.5); transform:translateY(-1px); }

.hero-right {
  position:relative; overflow:hidden;
  animation: fadeUp .7s .15s ease both;
}
.hero-right img {
  width:100%; height:100%; object-fit:cover; object-position:center; display:block;
}
.hero-right::after {
  content:'';
  position:absolute; inset:0;
  background: linear-gradient(to right, var(--navy) 0%, transparent 35%);
}

.scroll-hint {
  position:absolute; bottom:24px; left:50%; transform:translateX(-50%);
  display:flex; flex-direction:column; align-items:center; gap:6px;
  color:var(--warm-gray); font-size:10px; letter-spacing:.1em; text-transform:uppercase;
  z-index:3; animation:fadeUp 1s .6s ease both;
}
.scroll-hint::after {
  content:''; width:1px; height:28px;
  background:linear-gradient(to bottom, var(--warm-gray), transparent);
  animation:scrollPulse 2s ease-in-out infinite;
}

/* ── TRUST BAR ───────────────────────────── */
.trust-bar {
  background: var(--navy-mid);
  padding:15px 6vw;
  display:flex; gap:28px; align-items:center; flex-wrap:wrap;
  border-top:2px solid var(--blue);
  border-bottom:1px solid rgba(255,255,255,0.05);
}
.trust-item {
  display:flex; align-items:center; gap:9px;
  color:var(--warm-gray); font-size:13px; font-weight:400;
}
.trust-dot {
  width:6px; height:6px; border-radius:50%;
  background: var(--blue); flex-shrink:0;
}

/* ── SHARED ───────────────────────────────── */
section { padding:80px 6vw; }
.section-label {
  font-size:11px; font-weight:700; letter-spacing:.12em;
  text-transform:uppercase; color:var(--blue); margin-bottom:12px;
}
.section-title {
  font-family:'Metropolis','DM Sans',sans-serif;
  font-size:clamp(26px, 3vw, 42px); font-weight:700;
  color:var(--navy); line-height:1.12; margin-bottom:14px;
  letter-spacing:-0.01em;
}
.section-sub {
  font-size:17px; color:var(--text-muted); line-height:1.7;
  max-width:540px; font-weight:400;
}

/* ── USP ─────────────────────────────────── */
.usp-section { background:var(--white); }
.usp-intro { margin-bottom:48px; }
.usp-grid {
  display:grid; grid-template-columns:repeat(auto-fit, minmax(230px, 1fr));
  gap:2px; background:var(--navy);
  border:2px solid var(--navy); overflow:hidden;
}
.usp-item {
  padding:36px 30px;
  background:var(--white);
  transition:background .2s;
  border-right:2px solid var(--navy);
}
.usp-item:hover { background:var(--cream); }
.usp-item:last-child { border-right:none; }
.usp-icon {
  width:56px; height:56px; margin-bottom:14px;
}
.usp-icon svg { width:56px; height:56px; }
.usp-number {
  font-size:50px; font-weight:700;
  background: var(--grad);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent;
  background-clip:text;
  line-height:1; margin-bottom:12px;
  letter-spacing:-0.02em;
}
.usp-title { font-size:15px; font-weight:700; color:var(--navy); margin-bottom:8px; }
.usp-desc { font-size:13px; color:var(--text-muted); line-height:1.65; font-weight:400; }

/* ── PHOTO BREAK ─────────────────────────── */
.photo-break { position:relative; height:440px; overflow:hidden; padding:0; }
.photo-break img { width:100%; height:100%; object-fit:cover; object-position:center 30%; display:block; }
.photo-break-overlay {
  position:absolute; inset:0;
  background: linear-gradient(to right, rgba(10,22,40,.9) 0%, rgba(10,22,40,.4) 55%, transparent 100%);
  display:flex; align-items:center; padding:0 6vw;
}
.photo-break-text { max-width:500px; }
.photo-break-text .section-label { color:var(--sec-teal); }
.photo-break-text .section-title { color:var(--white); margin-bottom:14px; }
.photo-break-text p {
  font-size:17px; color:rgba(255,255,255,.75);
  line-height:1.7; font-weight:400;
}
.photo-break-accent {
  display:inline-block;
  width:48px; height:3px;
  background:var(--grad);
  margin-bottom:20px;
  border-radius:2px;
}

/* ── TIME ────────────────────────────────── */
.time-section {
  background:var(--navy); color:var(--white);
  display:grid; grid-template-columns:1fr 1fr; gap:0; padding:0;
}
.time-left {
  padding:72px 48px 72px 6vw;
  display:flex; flex-direction:column; justify-content:center;
  border-right:1px solid rgba(255,255,255,.06);
}
.time-right {
  padding:72px 6vw 72px 48px;
  display:flex; flex-direction:column; justify-content:center;
}
.time-slot {
  display:flex; align-items:center; justify-content:space-between;
  padding:16px 0; border-bottom:1px solid rgba(255,255,255,.07);
}
.time-day { font-size:15px; color:var(--warm-gray); font-weight:400; }
.time-hours {
  font-size:20px; font-weight:700; color:var(--white);
  letter-spacing:-0.01em;
}
.time-hours.hi {
  background: var(--grad);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent;
  background-clip:text;
}
.time-note {
  margin-top:24px;
  background: rgba(0,153,255,0.1);
  border:1px solid rgba(0,153,255,0.25);
  border-left:3px solid var(--blue);
  padding:14px 18px; font-size:14px; color:var(--sec-blue); line-height:1.6;
}
.time-accent {
  display:inline-block; width:40px; height:3px;
  background:var(--grad); margin-bottom:20px; border-radius:2px;
}

/* ── HOW ─────────────────────────────────── */
.how-section { background:var(--cream); }
.steps {
  display:grid; grid-template-columns:repeat(auto-fit, minmax(200px, 1fr));
  gap:0; margin-top:48px; position:relative;
}
.steps::before {
  content:''; position:absolute; top:30px; left:7%; width:86%; height:1px;
  background:var(--border); z-index:0;
}
.step { padding:0 20px; position:relative; z-index:1; }
.step-dot {
  width:60px; height:60px; border-radius:50%;
  background:var(--white);
  border:2px solid var(--blue);
  display:flex; align-items:center; justify-content:center; margin-bottom:18px;
  font-size:20px; font-weight:700; color:var(--blue);
  transition:all .2s;
}
.step:hover .step-dot {
  background:var(--blue); color:var(--white);
  box-shadow:0 8px 24px rgba(0,153,255,0.3);
}
.step-title { font-size:15px; font-weight:700; color:var(--navy); margin-bottom:8px; }
.step-desc { font-size:13px; color:var(--text-muted); line-height:1.65; font-weight:400; }

/* ── TEAM ────────────────────────────────── */
.team-section {
  background:var(--white);
  display:grid; grid-template-columns:1fr 1fr; min-height:440px;
}
.team-photo { overflow:hidden; }
.team-photo img { width:100%; height:100%; object-fit:cover; object-position:center; display:block; }
.team-text {
  padding:60px 6vw 60px 52px;
  display:flex; flex-direction:column; justify-content:center;
}
.team-accent {
  display:inline-block; width:40px; height:3px;
  background:var(--grad); margin-bottom:20px; border-radius:2px;
}

/* ── REVIEWS ─────────────────────────────── */
.reviews-section { background:var(--cream); }
.reviews-grid {
  display:grid; grid-template-columns:repeat(auto-fit, minmax(270px, 1fr));
  gap:16px; margin-top:44px;
}
.review-card {
  background:var(--white); border-radius:2px; padding:28px;
  border-top:3px solid var(--blue);
  box-shadow:0 2px 12px rgba(0,0,0,.04);
}
.review-stars { display:flex; gap:3px; margin-bottom:12px; }
.star { width:14px; height:14px; fill:var(--blue); }
.review-text {
  font-size:14px; color:var(--text); line-height:1.75;
  font-weight:400; font-style:italic; margin-bottom:16px;
}
.review-author { font-size:13px; font-weight:700; color:var(--navy); }

/* ── CTA ─────────────────────────────────── */
.cta-section {
  background: var(--grad);
  padding:80px 6vw; text-align:center;
  position:relative; overflow:hidden;
}
.cta-section::before {
  content:'';
  position:absolute; top:-100px; left:-100px;
  width:400px; height:400px;
  background:rgba(255,255,255,0.06); border-radius:50%;
  pointer-events:none;
}
.cta-section::after {
  content:'';
  position:absolute; bottom:-80px; right:-80px;
  width:300px; height:300px;
  background:rgba(255,255,255,0.06); border-radius:50%;
  pointer-events:none;
}
.cta-section .section-label { color:rgba(255,255,255,.7); text-align:center; }
.cta-section .section-title { color:var(--white); text-align:center; margin-bottom:14px; }
.cta-section .section-sub {
  color:rgba(255,255,255,.85); max-width:460px;
  margin:0 auto 36px; text-align:center;
}
.cta-group {
  display:flex; gap:16px; justify-content:center; flex-wrap:wrap; align-items:center;
  position:relative; z-index:1;
}
.btn-white {
  background:var(--white); color:var(--blue-deep); border:none;
  padding:16px 34px; border-radius:2px;
  font-family:'Metropolis','DM Sans',sans-serif;
  font-size:14px; font-weight:700; letter-spacing:.04em; text-transform:uppercase;
  cursor:pointer; text-decoration:none; display:inline-block;
  transition:transform .15s, box-shadow .15s;
}
.btn-white:hover { transform:translateY(-2px); box-shadow:0 8px 24px rgba(0,0,0,.15); }
.cta-phone {
  font-size:24px; font-weight:700; color:var(--white);
  text-decoration:none; display:flex; align-items:center; gap:10px;
  letter-spacing:-0.01em; transition:opacity .2s;
  position:relative; z-index:1;
}
.cta-phone:hover { opacity:.85; }

/* ── FOOTER ──────────────────────────────── */
footer {
  background:var(--navy);
  border-top:3px solid var(--blue);
  padding:36px 6vw;
  display:flex; justify-content:space-between; align-items:center;
  flex-wrap:wrap; gap:14px;
}
.footer-logo {
  font-size:18px; font-weight:700; color:var(--white);
  letter-spacing:-.01em;
}
.footer-logo span { color:var(--blue); }
.footer-meta { font-size:13px; color:var(--warm-gray); font-weight:400; line-height:1.6; }
.footer-meta a { color:var(--sec-blue); text-decoration:none; }

/* ── ANIMATIONS ──────────────────────────── */
@keyframes fadeUp {
  from { opacity:0; transform:translateY(20px); }
  to   { opacity:1; transform:translateY(0); }
}
@keyframes scrollPulse {
  0%,100% { opacity:.4; } 50% { opacity:1; }
}
.reveal {
  opacity:0; transform:translateY(22px);
  transition:opacity .65s ease, transform .65s ease;
}
.reveal.visible { opacity:1; transform:translateY(0); }

/* ── RESPONSIVE ──────────────────────────── */
@media(max-width:860px) {
  .hero { grid-template-columns:1fr; }
  .hero-right { display:none; }
  .hero-left { padding:80px 6vw 60px; }
  .time-section { grid-template-columns:1fr; }
  .time-left { border-right:none; border-bottom:1px solid rgba(255,255,255,.06); padding:56px 6vw 36px; }
  .time-right { padding:36px 6vw 56px; }
  .team-section { grid-template-columns:1fr; }
  .team-photo { height:280px; }
  .team-text { padding:40px 6vw; }
  .steps::before { display:none; }
  .step { padding:0 0 28px; }
  footer { flex-direction:column; align-items:flex-start; }
  .trust-bar { gap:14px; }
  .photo-break { height:auto; min-height:320px; }
  
  .contact-bar {
    display: block;
    top: 51px;
    padding: 8px 3vw;
}

.contact-bar-right {
  display: block;
  text-align: center;
}

.contact-bar-social {
  justify-content: center;
}

}

/* ── DEVICES ─────────────────────────────── */
.devices-section { background:var(--white); padding:80px 6vw; }
.devices-intro { margin-bottom:56px; }
.device-card {
  display:grid; grid-template-columns:1fr 1fr; gap:56px;
  align-items:center; margin-bottom:72px;
}
.device-card--reverse { direction:rtl; }
.device-card--reverse > * { direction:ltr; }
.device-img { overflow:hidden; border-radius:2px; }
.device-img img { width:100%;height:100%;object-fit:cover;display:block; }
.device-badge {
  display:inline-block; background:var(--blue); color:var(--white);
  font-family:'Metropolis','DM Sans',sans-serif;
  font-size:12px; font-weight:700; letter-spacing:.08em; text-transform:uppercase;
  padding:5px 14px; border-radius:2px; margin-bottom:14px;
}
.device-badge--teal { background:var(--sec-teal); }
.device-title {
  font-family:'Metropolis','DM Sans',sans-serif;
  font-size:clamp(22px,2.4vw,32px); font-weight:700;
  color:var(--navy); line-height:1.15; margin-bottom:14px;
}
.device-desc { font-size:15px; color:var(--text-muted); line-height:1.75; margin-bottom:16px; }
.device-list {
  padding-left:18px; margin-bottom:4px;
  font-size:14px; color:var(--text-muted); line-height:2;
}
.device-list li::marker { color:var(--blue); }
@media(max-width:860px){
  .device-card,.device-card--reverse { grid-template-columns:1fr; direction:ltr; }
}