:root{
  --blue: #1f46ff;
  --blue-dark: #1637d6;
  --ink: #0b0f1c;
  --black: #0c0f16;
  --white: #ffffff;
  --muted: rgba(255,255,255,.72);
  --muted-dark: rgba(0,0,0,.60);
  --border: rgba(255,255,255,.18);
  --border-dark: rgba(0,0,0,.12);
  --radius: 14px;
  --shadow: 0 18px 60px rgba(0,0,0,.25);
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:#111;
  background:#fff;
}

a, a:hover, a:focus { text-decoration: none !important; }

.container-xl{ max-width: 1180px; }

/* ---------- Helpers ---------- */
.reveal{
  opacity:0;
  transform: translateY(14px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.in{
  opacity:1;
  transform: translateY(0);
}

/* ---------- Header / Nav ---------- */
.site-header{ position: relative; z-index: 50; }

.nav-glass{
  position:absolute;
  left:0; right:0; top:0;
  background: rgba(18, 54, 255, .28);
  border-bottom: 1px solid rgba(255,255,255,.20);
  backdrop-filter: blur(10px);
}

.navbar .nav-link{
  color: rgba(255,255,255,.92) !important;
  font-weight: 600;
  letter-spacing: .2px;
}
.navbar .nav-link:hover{ color:#fff !important; }

.brand-badge{
  width: 18px; height: 18px;
  border-radius: 6px;
  background: #ffffff00;
}

.btn-pill{
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 700;
  border: 1px solid rgba(255,255,255,.35);
}
.btn-outline-white{
  background: transparent;
  color:#fff;
}
.btn-outline-white:hover{
  background:#fff;
  color: var(--blue);
}

.offcanvas-dark{
  background: var(--ink);
  color:#fff;
}
.mob-link{
  display:block;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(255,255,255,.16);
  color: rgba(255,255,255,.88);
}
.mob-link:hover{ color:#fff; }

/* ---------- HERO ---------- */
.hero{
  position: relative;
  min-height: 74vh;
  overflow:hidden;
  background: var(--blue);
  padding-bottom: 120px; /* legyen tér a band-nek */
}

/* Színes sziréna-fény alul */
.hero::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:10%;                 /* kb a kép 10%-a */
  pointer-events:none;

  background: linear-gradient(90deg,
    rgba(255, 30, 30, 0.0) 0%,
    rgba(255, 30, 30, 0.65) 25%,
    rgba(40, 120, 255, 0.65) 75%,
    rgba(0, 0, 0, 0) 100%
  );

  filter: blur(10px);
  mix-blend-mode: screen;     /* szépen “fény” hatás */
  opacity: 0.95;
}
@keyframes sirenPulse{
  0%   { opacity: .25; transform: translateY(0); }
  50%  { opacity: 1;   transform: translateY(-2px); }
  100% { opacity: .25; transform: translateY(0); }
}

.hero::after{
  animation: sirenPulse 1.1s infinite;
}
@keyframes sirenSwap{
  0%,100% { filter: blur(10px) hue-rotate(0deg); opacity: .95; }
  50%     { filter: blur(10px) hue-rotate(180deg); opacity: .95; }
}

.hero::after{
  animation: sirenSwap 0.9s infinite;
}


.hero-media{
  position:absolute; inset:0;
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
}

.hero-overlay{
  position:absolute; inset:0;
  background:
    linear-gradient(to bottom, rgba(10,20,60,.15), rgba(10,20,60,.35)),
    radial-gradient(900px 520px at 15% 10%, rgba(255,255,255,.16), transparent 60%),
    radial-gradient(900px 520px at 85% 10%, rgba(255,255,255,.10), transparent 60%);
}

.hero-content{
  position: relative;
  padding-top: 96px;
  padding-bottom: 36px;
}

.hero-title{
  color:#fff;
  font-weight: 900;
  line-height: .92;
  text-transform: uppercase;
}
.hero-title .small{
  font-size: clamp(22px, 2.6vw, 34px);
  letter-spacing: 1px;
}
.hero-title .big{
  font-size: clamp(56px, 6vw, 92px);
  letter-spacing: 1px;
}

.btn-hero{
  background: #fff;
  color: var(--blue);
  font-weight: 800;
  border-radius: 10px;
  padding: 10px 14px;
}
.btn-hero:hover{
  background: var(--blue);
  color:#fff;
  border: 1px solid #fff;
}

.hero-split{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
  min-height: 56vh;
}

/* bal oldal: középre igazítva a saját oszlopban */
.hero-left{
  display: flex;
  flex-direction: column;
  align-items: flex-start;   /* BALRA igazítás */
  text-align: left;          /* BALRA igazított szöveg */
}


/* CTA-k */
.hero-ctas{
  margin-top: 14px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.btn-hero-outline{
  background: transparent;
  color: #fff;
  font-weight: 800;
  border-radius: 10px;
  padding: 10px 14px;
  border: 2px solid rgba(255,255,255,.85);
}
.btn-hero-outline:hover{
  background: #fff;
  color: var(--blue);
}

/* jobb oldal: natúr kép (div background, nincs keret) */
.hero-right{
  display: flex;
  justify-content: center;
}

.hero-native-media{
  width: 100%;
  max-width: 520px;
  height: 320px;               /* natúr képblokk */
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;

  border: 0;
  border-radius: 0;
  box-shadow: none;
}

/* mobilon egymás alá */
@media (max-width: 992px){
  .hero-split{
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-native-media{
    max-width: 620px;
    height: 240px;
  }
}



/* ---------- TILES BAND (KÉT BLOKK KÖZÖTT) ---------- */
.tiles-band{
  position: relative;
  z-index: 30;
  margin-top: -110px; /* felhúzza a heróra */
  margin-bottom: -46px; /* belóg a kék blokkba */
}
@media (max-width: 992px){
  .tiles-band{ margin-top: -90px; margin-bottom: -20px; }
}

/* Hero tiles row */
.hero-tiles{
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.tile{
  position: relative;
  height: 94px;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 14px;
  border: 2px solid rgba(255,255,255,.22);
  box-shadow: 0 10px 30px rgba(0,0,0,.18);
}

.tile .tile-label{
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .35px;
  line-height: 1.1;
  z-index: 2;
}

.tile-lines{
  position:absolute; inset:0;
  background:
    linear-gradient(135deg, transparent 0 40%,
    rgba(255,255,255,.26) 40% 42%,
    transparent 42% 55%,
    rgba(255,255,255,.26) 55% 57%,
    transparent 57% 70%,
    rgba(255,255,255,.26) 70% 72%,
    transparent 72% 100%);
  opacity: .55;
}

.tile-ghost{ opacity: .55; }
.tile-wide{ grid-column: span 2; }

@media (max-width: 992px){
  .hero-tiles{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .tile-wide{ grid-column: span 1; }
  .nav-glass{ position: sticky; }
}

/* ---------- Invert system ---------- */
.theme-white{
  background: #fff;
  color: var(--blue);
  border: 2px solid var(--blue);
}
.theme-blue{
  background: var(--blue);
  color: #fff;
  border: 2px solid rgba(255,255,255,.22);
}
.invert-on-hover{
  transition: background .20s ease, color .20s ease, border-color .20s ease, transform .20s ease;
}
.invert-on-hover:hover{ transform: translateY(-2px); }
.theme-white.invert-on-hover:hover{
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}
.theme-blue.invert-on-hover:hover{
  background: #fff;
  color: var(--blue);
  border-color: #fff;
}
.invert-on-hover *{ transition: color .20s ease, border-color .20s ease, background .20s ease; }
.theme-white.invert-on-hover:hover *{ color:#fff !important; }
.theme-blue.invert-on-hover:hover *{ color: var(--blue) !important; }

/* ---------- BLUE PANEL ---------- */
.blue-panel{
  background: var(--blue);
  color:#fff;
  padding: 86px 0 90px; /* felül több hely, mert a tiles belóg */
  position: relative;
  z-index: 1;
}

.panel-kicker{
  color: rgba(255,255,255,.65);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .35px;
  font-size: 12px;
  margin-bottom: 10px;
}

.panel-h{
  font-weight: 1000;
  text-transform: uppercase;
  letter-spacing: .3px;
}
.panel-p{
  color: rgba(255,255,255,.86);
  line-height: 1.65;
}

/* blue tabs */
.blue-tabs{
  display:grid;
  grid-template-columns: 280px 1fr 420px;
  gap: 22px;
  align-items: start;
  margin-top: 14px;
}

.blue-tab{
  width:100%;
  text-align:left;
  display:flex;
  justify-content: space-between;
  align-items:center;
  padding: 14px 12px;
  border-radius: 10px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.92);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .35px;
  transition: background .2s ease, transform .2s ease;
}
.blue-tab:hover{ background: rgba(255,255,255,.12); transform: translateY(-1px); }
.blue-tab.is-active{
  background: #fff;
  color: var(--blue);
  border-color: #fff;
}

.blue-image{
  width: 100%;
  height: 260px; 
  background-size: contain;   
  background-position: center;  
  background-repeat: no-repeat;  
  border: none;
  box-shadow: none;
  border-radius: 0;
}

@media (max-width: 992px){
  .blue-tabs{ grid-template-columns: 1fr; }
  .blue-image{ height: 220px; }
}

/* ---------- SIMPLE BLACK FEATURE BLOCK (mint a képen) ---------- */
.black-feature{
  margin-top: 46px;
  display:flex;
  justify-content: center;
}
.black-feature-card{
  width: min(980px, 100%);
  display:grid;
  grid-template-columns: 1.05fr 1.2fr;
  background: #0d0f14;
  border-radius: 0;
  overflow:hidden;
  box-shadow: 0 18px 50px rgba(0,0,0,.35);
}
.black-feature-img{
  min-height: 280px;
  background-size: cover;
  background-position: center;
}
.black-feature-text{
  padding: 28px 30px;
  display:flex;
  flex-direction: column;
  justify-content: center;
}
.bf-quote{
  color: rgba(255,255,255,.92);
  font-weight: 700;
  line-height: 1.7;
  font-size: 14px;
}
.bf-meta{
  margin-top: 14px;
}
.bf-name{
  color: rgba(255,255,255,.72);
  font-weight: 900;
  font-size: 12px;
}
.bf-role{
  color: rgba(255,255,255,.55);
  font-weight: 800;
  font-size: 12px;
  margin-top: 4px;
}
@media (max-width: 992px){
  .black-feature-card{ grid-template-columns: 1fr; }
  .black-feature-img{ min-height: 220px; }
}

/* ---------- WHITE SECTION ---------- */
.section-white{
  background:#fff;
  padding: 54px 0 64px;
}

/* buttons */
.btn-blue{
  background: var(--blue);
  color:#fff;
  border: 1px solid var(--blue);
  font-weight: 800;
  border-radius: 10px;
  padding: 9px 12px;
}
.btn-blue:hover{
  background: #fff;
  color: var(--blue);
}
.btn-mini{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width: 120px;
}

.section-white .btn-blue{
  background: #1f3cff;
  color: #fff;
  border: none;
}

.section-white .invert-on-hover:hover .btn-blue{
  background: #fff;
  color: #1f3cff;       /* EZ A KULCS */
}


/* cards */
.card-invert{
  border: none !important;
  box-shadow: none !important;
  display:block;
  border-radius: 14px;
  text-decoration:none;
  box-shadow: none;
  position: relative;
  overflow:hidden;
  min-height: 160px;
  overflow: hidden;
}
.card-invert-inner{
  border: none !important;
  box-shadow: none !important;
  padding: 24px;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: stretch;
}
.card-invert-title{
  font-weight: 1000;
  text-transform: uppercase;
  letter-spacing: .4px;
  line-height: 1.05;
  font-size: 28px;
}
.card-invert-sub{
  margin-top: 10px;
  font-weight: 700;
  opacity: .75;
  max-width: 360px;
}

.card-with-media .card-invert-inner{
  display:grid;
  grid-template-columns: 1fr 200px;
  gap: 26px;
  align-items: stretch;
  border: none !important;
  box-shadow: none !important;
}
.card-content{ 
    flex: 1;
    padding-right: 28px; 
}

.card-media{
  width: 44%;
  margin-left: auto;    /* jobbra tolja */
  border: none;
  border-left: none;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  min-height: 160px;
  opacity: .95;
  transition: opacity .2s ease, transform .2s ease;
}
.theme-white.invert-on-hover:hover .card-media{
  border-color: rgba(255,255,255,.25);
  opacity: 1;
}
@media (max-width: 992px){
  .card-with-media .card-invert-inner{ grid-template-columns: 1fr; }
  .card-media{ min-height: 160px; }
}

/* Steps */
.steps-h{
  font-weight: 900;
  color: #111;
}
.steps-grid{
  margin-top: 14px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.step-card{
  display:block;
  text-decoration:none;
  border-radius: 6px;
  padding: 18px 18px 16px;
  min-height: 170px;
  position: relative;
  overflow:hidden;
}
.step-num{
  position:absolute;
  right: 10px;
  top: -8px;
  font-size: 92px;
  font-weight: 1000;
  line-height: 1;
  opacity: .16;
}
.step-title{
  margin-top: 62px;
  font-weight: 1000;
  text-transform: uppercase;
  letter-spacing: .4px;
}
.step-sub{
  margin-top: 8px;
  font-weight: 700;
  opacity: .72;
}
@media (max-width: 992px){
  .steps-grid{ grid-template-columns: 1fr; }
}

/* ---------- Dark carousel ---------- */
.dark-split{
  background: #0f1118;
  padding: 0;
}
.dark-carousel{
  display:grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  min-height: 360px;
  overflow:hidden;
  background: #0f1118;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
}

.dark-left{
  padding: 30px 30px;
  display:flex;
  flex-direction: column;
  justify-content: center;
}

.dark-kicker{
  color: rgba(255,255,255,.70);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .35px;
  font-size: 12px;
}
.dark-title{
  color:#fff;
  font-weight: 1000;
  margin: 8px 0 6px;
  text-transform: uppercase;
}
.dark-sub{
  color: rgba(255,255,255,.78);
  font-weight: 800;
  margin-bottom: 10px;
}
.dark-body{
  color: rgba(255,255,255,.86);
  line-height: 1.75;
  margin: 0;
  max-width: 560px;
}
.dark-controls{
  margin-top: 18px;
  display:flex;
  align-items:center;
  gap: 12px;
}
.dark-count{
  color: rgba(255,255,255,.65);
  font-weight: 900;
  letter-spacing: .3px;
}
.slider-btn{
  width: 44px; height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.20);
  background: rgba(255,255,255,.10);
  color:#fff;
}
.slider-btn:hover{ background: rgba(255,255,255,.18); }

.dark-right{
  min-height: 360px;
  background-size: cover;
  background-position: center;
}
@media (max-width: 992px){
  .dark-carousel{ grid-template-columns: 1fr; }
  .dark-right{ min-height: 220px; }
}

/* ---------- Popular roles ---------- */
.jobs-h{ font-weight: 1000; margin-bottom: 12px; }

.popular-head{
  display:flex;
  align-items:flex-start;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.mini-stats{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}
.mini-stat{
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 10px;
  padding: 10px 12px;
  min-width: 120px;
}
.mini-stat .k{ font-weight: 900; color: rgba(0,0,0,.55); font-size: 12px; text-transform: uppercase; }
.mini-stat .v{ font-weight: 1000; color: var(--blue); font-size: 18px; }

.chips{
  margin-top: 12px;
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}
.chip-btn{
  border-radius: 999px;
  padding: 10px 14px;
  border: 2px solid var(--blue);
  background: #fff;
  color: var(--blue);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .3px;
}
.chip-btn.is-active, .chip-btn:hover{
  background: var(--blue);
  color:#fff;
}

.popular-grid{
  margin-top: 14px;
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.popular-card{
  display:block;
  border-radius: 10px;
  padding: 16px;
  min-height: 140px;
}
.pc-title{
  font-weight: 1000;
  text-transform: uppercase;
  letter-spacing: .35px;
}
.pc-sub{
  margin-top: 6px;
  font-weight: 800;
  opacity: .72;
}
.pc-foot{
  margin-top: 14px;
  display:flex;
  align-items:center;
  justify-content: space-between;
}
.pc-badge{
  display:inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(31,70,255,.12);
  border: 1px solid rgba(31,70,255,.20);
  font-weight: 900;
}
.pc-open{ font-weight: 900; opacity: .70; }

@media (max-width: 992px){
  .popular-grid{ grid-template-columns: 1fr; }
}

/* ---------- Footer ---------- */
.site-footer{
  background: #0f1118;
  color:#fff;
  padding: 44px 0 26px;
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 22px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer-brand{
  display:flex;
  gap: 10px;
  align-items:center;
  margin-bottom: 8px;
}
.footer-muted{ color: rgba(255,255,255,.62); font-weight: 700; }
.footer-col a{
  display:block;
  color: rgba(255,255,255,.72);
  padding: 6px 0;
  font-weight: 700;
}
.footer-col a:hover{ color:#fff; }
.footer-h{
  font-weight: 1000;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: .35px;
  color: rgba(255,255,255,.90);
}
.footer-bottom{
  padding-top: 18px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
}
.footer-social a{
  color: rgba(255,255,255,.78);
  margin-left: 10px;
  font-size: 18px;
}
.footer-social a:hover{ color:#fff; }

@media (max-width: 992px){
  .footer-grid{ grid-template-columns: 1fr; }
  .footer-bottom{ flex-direction: column; align-items:flex-start; }
}

/* --- DARK FEATURE (full text left, full image right) — EDGE TO EDGE, NO STRIPS --- */
.dark-split{
  background: #0f1118;
  padding: 0 !important;     /* <- nincs felül/alul csík */
  margin: 0 !important;
}

/* ha véletlen containerben maradna, ez akkor is teljes szélességre húzza */
.dark-feature{
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);

  display: grid;
  grid-template-columns: 1.05fr 1fr;

  height: 560px;             /* <- ettől tölti ki “a dobozt” */
  min-height: 560px;

  background: #12151c;
  border: 0;                 /* a border is adhat “csík” érzetet */
}

/* bal oldal teljes magasság */
.df-left{
  background: #171a21;
  height: 100%;
  display: flex;
  align-items: stretch;
}

/* belső tartalom: nincs felül/alul padding, középre igazítva */
.df-inner{
  width: min(620px, 100%);
  margin-left: clamp(18px, 7vw, 90px);
  margin-right: 32px;

  height: 100%;
  padding: 0;                /* <- fontos */
  display: flex;
  flex-direction: column;
  justify-content: center;    /* <- középre a teljes panelen */
}

.df-quote{
  color: rgba(255,255,255,.92);
  font-weight: 650;
  line-height: 1.9;
  font-size: 14px;
}

.df-meta{ margin-top: 18px; }
.df-name{
  color: rgba(31,70,255,.95);
  font-weight: 900;
  font-size: 12px;
}
.df-role{
  color: rgba(255,255,255,.65);
  font-weight: 800;
  font-size: 12px;
  margin-top: 4px;
}

.df-controls{
  margin-top: 22px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 16px;
}

.df-dots{
  display:flex;
  gap: 10px;
  align-items:center;
}
.df-dot{
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,.30);
}
.df-dot.is-active{
  background: rgba(255,255,255,.95);
}

.df-arrows{
  display:flex;
  gap: 12px;
}
.df-btn{
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(31,70,255,.35);
  background: rgba(31,70,255,.10);
  color: rgba(31,70,255,.95);
  display:grid;
  place-items:center;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.df-btn:hover{
  transform: translateY(-1px);
  background: rgba(31,70,255,.18);
  border-color: rgba(31,70,255,.55);
}

/* jobb oldal teljes kép */
.df-right{
  height: 100%;
  min-height: 560px;
  background-size: cover;
  background-position: center;
}

/* responsive */
@media (max-width: 992px){
  .dark-feature{
    width: 100%;
    margin: 0;
    grid-template-columns: 1fr;
    height: auto;
    min-height: 0;
  }

  .df-right{ min-height: 280px; }

  .df-inner{
    width: 100%;
    margin: 0;
    padding: 26px 22px;      /* mobilon kell egy kis tér */
    justify-content: flex-start;
  }
}

/* --- BLUE LIST STYLE NAV (no background buttons) --- */
.blue-nav-kicker{
  color: rgba(255,255,255,.55);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .35px;
  font-size: 12px;
  margin-bottom: 10px;
}

.blue-link{
  width: 100%;
  text-align: left;
  display:flex;
  align-items:center;
  justify-content: space-between;

  background: transparent;
  border: 0;
  padding: 10px 0;

  color: rgba(255,255,255,.35);
  font-weight: 900;
  font-size: 20px;
  letter-spacing: .2px;

  cursor: pointer;
  transition: color .18s ease, transform .18s ease, opacity .18s ease;
}

.blue-link .arr{
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity .18s ease, transform .18s ease;
  color: rgba(255,255,255,.92);
}

.blue-link:hover{
  color: rgba(255,255,255,.62);
}

.blue-link.is-active{
  color: rgba(255,255,255,.92);
}

.blue-link.is-active .arr{
  opacity: 1;
  transform: translateX(0);
}

/* opcionális: aktívnál finom “kiemelés” */
.blue-link.is-active{
  transform: translateX(0);
}

/* mobilon kicsit kisebb betű */
@media (max-width: 992px){
  .blue-link{ font-size: 18px; }
}

/* === FLOATING BLACK TESTIMONIAL (overlap blue + white) === */

.floating-testimonial{
  position: relative;
  z-index: 20;
  margin-top: -50px;        /* <- kevesebb fel-lógás (nem blokkolja a kéket) */
  margin-bottom: 0;
  pointer-events: none;
}

.floating-testimonial + .section-white{
  padding-top: var(75px);    /* <- ez “kiváltja” a takarást */
}

.floating-inner{
  max-width: 1080px;
  margin: 0 auto;
  background: #0f1118;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 360px;
  box-shadow: 0 40px 120px rgba(0,0,0,.45);
}

.floating-img{
  background-size: cover;
  background-position: center;
}

.floating-text{
  padding: 56px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.floating-text .quote{
  color: rgba(255,255,255,.92);
  font-size: 15px;
  line-height: 1.9;
  font-weight: 600;
}

.floating-text .who{
  margin-top: 22px;
  color: rgba(31,70,255,.95);
  font-weight: 900;
  font-size: 13px;
}
.floating-text .who span{
  display:block;
  color: rgba(255,255,255,.65);
  font-weight: 800;
  margin-top: 4px;
}

/* mobile */
@media (max-width: 992px){
  .floating-testimonial{
    margin-top: -120px;
  }
  .floating-testimonial + .section-white{
    padding-top: 170px;
  }
  .floating-inner{
    grid-template-columns: 1fr;
  }
}
.section-header{
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px;
}

.section-title{
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  color: #1f3cff;
  margin-bottom: 24px;
}

/* három pont + összekötés */
.section-header-left{
  text-align: left;
  max-width: 900px;
  margin: 0 0 50px;
}

/* főcím kékkel */
.section-title{
  color: #1f3cff;
  font-weight: 900;
  font-size: clamp(34px, 4vw, 54px);
  margin: 0 0 12px;
}

.req-list{ list-style:none; padding:0; margin: 22px 0 0; max-width: 760px; }
.req-list li{
  display:flex;
  gap: 12px;
  align-items:flex-start;
  padding: 14px 16px;
  border: 1px solid #e7ebff;
  border-radius: 12px;
  margin-bottom: 10px;
  background:#fff;
}
.tick{
  width: 26px; height: 26px;
  border-radius: 8px;
  display:grid; place-items:center;
  background: rgba(31,60,255,.12);
  color:#1f3cff;
  flex: 0 0 auto;
}
.req-list b{ color:#1f3cff; }
.org-compass{
  padding: 70px 0;
  background: #fff;
}

.compass-head{
  max-width: 760px;
  margin-bottom: 26px;
}

.compass-title{
  margin: 0 0 10px;
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 900;
  color: #1f3cff;
}

.compass-sub{
  margin: 0;
  color: #111;
  opacity: .7;
  line-height: 1.6;
}

.compass-wrap{
  display: grid;
  grid-template-rows: 320px auto;
  gap: 16px;
  padding-bottom: 120px;
  position: relative;
  padding: 22px;
  display: grid;
  grid-template-rows: 320px auto;
  gap: 14px;
  width: min(920px, 100%);
  height: auto;
  min-height: 0;
  overflow: visible;
  margin: 0 auto;
  border: 1px solid #eef1ff;
  border-radius: 18px;
  overflow: hidden;
  background: radial-gradient(circle at center, rgba(31,60,255,.06), transparent 60%);
}

.compass-stage{
  position: relative;
  height: 320px;
}

/* címkék maradhatnak abszolútak, de a stage-hez képest */
.compass-stage .compass-tag,
.compass-stage .compass-core{
  position: absolute;
}

/* Középső iránytű */
.compass-core{
  position: absolute;
  left: 50%;
  top: 44%;
  transform: translate(-50%, -50%);
  width: 170px;
  height: 170px;
  z-index: 0;
}

.compass-ring{
  position:absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(31,60,255,.22);
  box-shadow: 0 0 0 8px rgba(31,60,255,.04) inset;
}

.compass-needle{
  position:absolute;
  left: 50%;
  top: 50%;
  width: 6px;
  height: 70px;
  transform-origin: 50% 85%;
  transform: translate(-50%, -85%) rotate(0deg);
  background: linear-gradient(#ff2a2a, #1f3cff);
  border-radius: 6px;
  filter: blur(.0px);
}

.compass-dot{
  position:absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 10px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #1f3cff;
}

/* Címkék */
.compass-tag{
  position: absolute;
  border: 2px solid #1f3cff;
  background: #fff;
  color: #1f3cff;
  font-weight: 800;
  font-size: 13px;
  padding: 10px 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease, color .15s ease;
  user-select: none;
  z-index: 2;
}
.compass-tag:hover{
  transform: translate(var(--tx, 0px), -2px);
  background: #1f3cff;
  color: #fff;
}

/* Pozíciók (körben) */
.t1{ left: 50%; top: 10%; --tx: -50%; transform: translateX(-50%); }
.t2{ right: 8%; top: 32%; }
.t3{ right: 14%; bottom: 28%; }
.t4{ left: 8%; top: 34%; }
.t5{ left: 14%; bottom: 28%; }

/* Alul infó */
.compass-info{
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
  margin: 0;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #eef1ff;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(6px);
  z-index: 1;
  width: 100%;
}

.info-kicker{
  font-size: 12px;
  font-weight: 800;
  color: #111;
  opacity: .55;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.info-title{
  font-size: 18px;
  font-weight: 900;
  color: #1f3cff;
  margin-bottom: 2px;
}

.info-match{
  font-size: 14px;
  color: #111;
  opacity: .75;
}
/* === COMPASS: mobilon ne abszolút körben legyenek a tagek === */
@media (max-width: 768px){

  /* a külső doboz ne “kényszerítse” a fix 320px-es színpadot */
  .compass-wrap{
    grid-template-rows: auto auto;   /* stage + info */
    padding: 18px;
    gap: 12px;
  }

  /* a színpad legyen automatikus magasság */
  .compass-stage{
    height: auto;
    min-height: 0;
    padding: 14px 10px 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    position: relative;
  }

  /* a középső iránytű ne abszolút legyen mobilon */
  .compass-core{
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    width: 140px;
    height: 140px;
    margin: 6px auto 10px;
    order: -1; /* felül legyen */
  }

  /* mobilon a tagek ne legyenek abszolút pozícionálva */
  .compass-tag{
    position: static !important;
    transform: none !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;

    width: auto;
    max-width: 100%;
    white-space: normal;      /* ne fussa túl a sort */
    text-align: left;
    font-size: 13px;
    padding: 10px 12px;
  }

  /* hover transform ne tolja el mobilon */
  .compass-tag:hover{
    transform: none !important;
  }

  /* a “kör” pozíció osztályok mobilon ne csináljanak semmit */
  .t1,.t2,.t3,.t4,.t5{
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    --tx: 0px;
  }

  /* info blokk marad alul, teljes szélességen */
  .compass-info{
    border-radius: 14px;
  }
}


.cta-strip{
  padding: 60px 0;
  background: transparent;
}

.cta-card{
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 0;
  border: 2px solid #1f3cff;
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;

  background: #fff;
  color: #111;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}

/* Bal oldal */
.cta-left{
  padding: 36px 38px;
}

.cta-kicker{
  font-weight: 900;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: #1f3cff;
  opacity: .9;
  margin-bottom: 10px;
}

.cta-title{
  margin: 0 0 10px;
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 900;
  color: #1f3cff;
}

.cta-sub{
  margin: 0 0 18px;
  color: #111;
  opacity: .75;
  line-height: 1.6;
  max-width: 520px;
}

/* Gomb */
.cta-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 900;
  background: #1f3cff;
  color: #fff;
  border: 2px solid #1f3cff;
  transition: background .2s ease, color .2s ease;
}

/* Jobb oldal kép */
.cta-right{
  position: relative;
  background: #f5f7ff;
}
.cta-right img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ✅ INVERT HOVER */
.cta-card:hover{
  background: #1f3cff;
  color: #fff;
  border-color: #1f3cff;
}
.cta-card:hover .cta-kicker,
.cta-card:hover .cta-title{
  color: #fff;
}
.cta-card:hover .cta-sub{
  color: #fff;
  opacity: .9;
}

/* gomb invert */
.cta-card:hover .cta-btn{
  background: #fff;
  color: #1f3cff;
}

/* Mobil */
@media (max-width: 992px){
  .cta-card{ grid-template-columns: 1fr; }
  .cta-right{ height: 220px; }
}
