/* ====== BASE ====== */
:root{
  --bg: #0b003e;
  --white: #ffffff;

  --header-h: 81px;
  --side-pad: 56px;

  --icon: 44px;        /* από 41px -> 58px */
  --icon-gap: 40px;    /* άστο όπως είναι ή κάντο 26-35 ανάλογα */

  --phone-size: 30px;

  --card-radius: 26px;
  --glass: rgba(255,255,255,0.10);

  --form-bg: rgba(73, 33, 255, 0.28); /* μωβ διαφάνεια */
  --form-solid: rgba(63, 25, 210, 0.55);

  --input-bg: rgba(255,255,255,0.22);
  --input-br: rgba(255,255,255,0.25);

  --btn-bg: rgba(124, 63, 255, 0.75);
  --btn-bg-hover: rgba(124, 63, 255, 0.9);
}

*{ box-sizing:border-box; }
html,body{ height:100%; }

body{
  margin:0;
  color: var(--white);
  background: var(--bg);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, "Arimo", sans-serif;
  overflow-x:hidden;
}


body::before{
  content:"";
  position: fixed;
  inset: -3vh -3vw;              /* ✅ overscan για να μην φανεί ποτέ κενό */
  background-image: url("/assets/images/couple_laptop.png");
  background-repeat: no-repeat;
  background-position: 75% 60%;  /* κράτα το framing που θες */
  background-size: cover;        /* ✅ δεν αφήνει άκρες */
  opacity: 0.25;
  z-index: -2;

  /* ✅ βοηθάει στο mobile pinch zoom να μην “σκάει” */
  transform: translateZ(0);
  will-change: transform;
}

/* dark overlay (σταθερό) */
body::after{
  content:"";
  position: fixed;
  inset: 0;
  background: var(--bg);
  opacity: 1;
  pointer-events: none;
  z-index: -3;
}

/* ====== HEADER ====== */
.topbar{
  height: var(--header-h);
  padding: 0 var(--side-pad);
  display:flex;
  align-items:center;
}

.topbar__inner{
  width: 100%;
  display:flex;
  align-items:center;
  justify-content: space-between;
}

.brand{
  display:flex;
  align-items:center;
  text-decoration:none;
  /* “logo έχει padding 56px” -> του δίνω καθαρό χώρο αριστερά */
  padding-top: 100px;
}
.brand__logo{
  height: 88px; /* αν θες μεγαλύτερο/μικρότερο πες μου */
  width:auto;
  display:block;
}

.topbar__right{
  display:flex;
  align-items:center;
  gap: 20px;
  padding-top:100px;
}

.social{
  display:flex;
  align-items:center;
  gap: var(--icon-gap);
}

.social__link{ display:inline-flex; }

.social__icon{
  width: var(--icon);
  height: var(--icon);
  object-fit: contain;
  display:block;
}



.phone-icon {
  width: 60px;
  height: 60px;

  margin-left:50px;
  background-color: #ff3a6e; /* Το χρώμα που θες */

  -webkit-mask: url("/assets/images/phone.png") no-repeat center;
  mask: url("/assets/images/phone.png") no-repeat center;
  -webkit-mask-size: contain;
  mask-size: contain;
  z-index: 4;
}

.phone{
  font-size: var(--phone-size);
  color: var(--white);
  text-decoration:none;
  font-weight: 600;
  white-space: nowrap;}

/* ====== HERO LAYOUT ================================================================================================= */
.hero{
  padding: 0 var(--side-pad);
}

.hero__wrap{
  /* απόσταση από header προς “κουτί” ~150px */
  padding-top: 200px;
}

.hero__card{
  position: relative;     /* νέο */
  overflow: visible;      /* νέο */

  width: min(1125px, 100%);
  margin: 0 auto;

  border-radius: var(--card-radius);
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(6px);

  display:grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 36px;

  padding: 44px 44px;
}


.hero__left{
  position: relative;
  padding-left: 20px; 
  padding-top:125px;
}


.hero__thunder{
  position: absolute;

  /* Τον βγάζουμε έξω από το box */
  top: -60px;         /* πιο πάνω */
  left: 245px;        /* πιο μέσα από όσο τον έχεις */

  width: auto;       /* μεγαλύτερος για να δέσει */
  height: 216px;

  z-index: 5;
  
}




.hero__title{
  margin: 0;
  font-size: 38px;
  line-height: 1.25;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.hero__sub{
  margin: 44px 0 0;
  font-size: 20px;
  line-height: 1.5;
  opacity: 0.95;
  max-width: 520px;
}

/* ====== FORM CARD ============================================================================================================ */
.formCard{
  border-radius: 22px;
  background: linear-gradient(180deg, var(--form-solid), var(--form-bg));
  padding: 34px 34px 26px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
  height:555px;
}

.formCard__title{
  margin: 6px 0 22px;
  text-align:center;
  font-size: 34px;
  font-weight: 600;
}

.form{
  display:flex;
  flex-direction: column;
  gap: 18px;
}

.field{
  display:flex;
  flex-direction: column;
  gap: 8px;
}

.field__label{
  font-size: 14px;
  font-weight: 500;
  opacity: 0.95;
}

.field__input{
  height: 56px;
  width: 100%;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.12);
  padding: 0 22px;
  color: #fff;
  font-size: 18px;
  outline: none;
}

.field__input::placeholder{
  color: rgba(255,255,255,0.6);
}

.field__input:focus{
  border-color: rgba(71,101,243,0.9);
  box-shadow: 0 0 0 4px rgba(71,101,243,0.18);
}

.consent{
  display:flex;
  align-items:flex-start;
  gap: 10px;
  font-size: 12.5px;
  line-height: 1.35;
  opacity: 0.95;
  margin-top: 6px;
}
.consent a{
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
}

.consent a:hover{
  opacity: 0.85;
}
.consent input{
  margin-top: 2px;
  width: 14px;
  height: 14px;
  accent-color: rgba(255,255,255,0.9);
}

.btn{
  margin: 10px auto 0;
  width: 62%;
  height: 56px;
  border-radius: 999px;
  border: none;
  background: var(--btn-bg);
  color: var(--white);
  font-size: 22px;
  font-weight: 600;
  cursor: pointer;
}

.btn:hover{
  background: var(--btn-bg-hover);
}

.formCard__logos{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 45px;
  flex-wrap: wrap;
  
}

.formCard__logoLeft{
  height: 35px;
  width:auto;
}

.formCard__logoRight{
  height: 27px;
  padding-top:3px;
  width:auto;
  opacity: 0.95;
}



/* STEPS */

/* ====== STEPS SECTION ============================================================================================ */
.steps{
  position: relative;
  margin-top:202px;
  min-height: 524px;
  padding-top: 104px;
  padding-left: 136px;
  padding-right: 136px;
  padding-bottom: 116px;
  z-index:0;
  box-shadow: 0 0 20px rgba(255,255,255,0.1);
}

.steps__title{
  text-align: center;
  font-size: 26px;
  font-weight: 500;
  color: #bdbde0;
  margin-bottom: 60px;
}

.steps{
  position: relative;
  overflow: hidden;            /* ✅ να μη φανούν άκρες από το overscan */
}

/* base tint */
.steps::before{
  content:"";
  position:absolute;
  inset:0;
  background:#0b003e;
  z-index:-2;
}

/* background photo (NO GAPS) */
.steps::after{
  content:"";
  position:absolute;
  inset: -3vh -3vw;            /* ✅ overscan για zoom artifacts */
  background-image: url("/assets/images/happy_family.png");
  background-repeat: no-repeat;
  background-position: center; /* ή κράτα center top αν θες framing */
  background-size: cover;      /* ✅ ποτέ κενά */
  opacity: 0.11;
  z-index:-1;

  transform: translateZ(0);
  will-change: transform;
}

/* glass card */
.steps__card{
  width: 100%;
  height: 100%;
  border-radius: 26px;

  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px; /* απόσταση ανάμεσα σε step blocks */
  padding: 0; /* το padding στο section το έδωσες ήδη */
}

/* each step block */
.step{
  flex: 1;
  text-align: center;
}

/* number */
.step__num{
  font-size: 108px;
  font-weight: 700;
  color: #a1a1e6;
  line-height: 1;
}

/* text */
.step__text{
  margin: 55px 0 0;
  font-size: 16px;
  line-height: 1.45;
  color: #ffffff;
}

/* triangle between steps */
.step__arrow{
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid #4765f3;
  opacity: 0.89;
  flex: 0 0 auto;
  align-self: center;
}






/* ====== ABOUT / WHO WE ARE ====== */
.about{
  position: relative;
  padding: 120px 56px 110px;   /* παίζει ανάλογα με το layout σου */
  color: #dcffff;
  overflow: hidden;
}

/* Μπλε φόντο 100% opacity */
.about::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:-3;
}

/* Φωτο από πάνω με χαμηλό opacity */
.about::before{
  content:"";
  position:absolute;
  inset:0;
  background-repeat:no-repeat;
  background-size: cover;            /* zoom */
  background-position: center 40%;   /* θέση */
  opacity: 0.09;                     /* 9% */
  z-index:-2;
}

/* (προαιρετικό) ελαφρύ “σκούρο” glaze για να δένει */
.about .about__inner{
  max-width: 845px;
  margin: 0 auto;
  text-align: center;
}

.about__title{
  margin: 0 0 64px;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.about__p{
  margin: 0 auto 65px;
  max-width: 920px;
  font-size: 18px;
  line-height: 1.65;
  opacity: 0.95;
}

.about__p--wide{
  max-width: 980px;
}

.about__mark{
  width: auto;           /* ρύθμισέ το */
  height: 112px;
  display:block;
  margin: 42px auto 25px;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,0.35));
}

/* icons κάτω */
.about__stats{
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 56px; /* “ανάσα” ανάμεσα */
  align-items: start;
}

.stat{
  display:flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.stat__icon{
  width: 86px;   /* κάν’τα όσο μεγάλα θες */
  height: 86px;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,0.25));
}

.stat__text{
  font-size: 16px;
  line-height: 1.45;
  color: rgba(255,255,255,0.92);
}


/* ===== CTA2 SECTION =============================================================================================== */
.cta2{
  padding: 70px var(--side-pad) 90px;
}

.cta2__inner{
  max-width: 1366px;
  margin: 0 auto;
}

.cta2__card{
  border-radius: 26px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(6px);
  padding-left:56px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;                 /* ΚΥΡΙΑ διόρθωση: πιο “αέρας” ανάμεσα */
}

/* LEFT */
.cta2__title{
  margin: 0 0 18px;
  padding-top:56px;
  font-size: 35px;
  line-height: 1.15;
  font-weight: 700;
}

.cta2__desc{
  margin: 20px 0 34px;
  font-size: 18px;
  line-height: 1.55;
  max-width: 560px;
  opacity: 0.95;
}

.cta2__benefits{
  margin-top:56px;
  position: relative;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(10,0,60,0.25);
  padding: 28px 28px;
  display: grid;
  gap: 18px;
  min-height: 220px;
}

.benefit{
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 16px;
}

.benefit__icon{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(71, 101, 243, 0.25);
  border: 1px solid rgba(71, 101, 243, 0.55);
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 20px;
}

.benefit__text{
  font-size: 18px;
  line-height: 1.35;
}

.cta2__img{
  position: absolute;
  right: 26px;
  top: 50%;
  transform: translateY(-50%);
  width: 190px;
  height: 190px;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
}

/* RIGHT FORM */
.cta2__right{
  border-radius: 22px;
  background: rgba(50, 20, 170, 0.25);
  border: 1px solid rgba(255,255,255,0.10);
  padding: 42px 42px 36px;     /* πιο σωστό “γεμάτο” */
}

.cta2__formTitle{
  margin: 0 0 14px;
  font-size: 34px;
  font-weight: 800;
}

.cta2__formDesc{
  margin: 0 0 26px;
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.95;
  max-width: 520px;
}

.cta2Form{
  display: grid;
  gap: 18px;
}

.cta2Form__input{
  height: 56px;
  width: 100%;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.12);
  padding: 0 22px;
  color: #fff;
  font-size: 18px;
  outline: none;
}

.cta2Form__input::placeholder{
  color: rgba(255,255,255,0.60);
}

.cta2Form__input:focus{
  border-color: rgba(71,101,243,0.9);
  box-shadow: 0 0 0 4px rgba(71,101,243,0.18);
}


.cta2Form__link{
  color: rgba(255,255,255,0.95);
  font-weight: 600;
  text-decoration: none;
}

.cta2Form__link:hover{
  text-decoration: underline;
}

.cta2Form__btn{
  margin: 12px auto 0;
  width: 62%;
  height: 58px;
  border-radius: 999px;
  border: none;
  background: rgba(124, 63, 255, 0.85);
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  cursor: pointer;
}

.cta2Form__btn:hover{
  background: rgba(124, 63, 255, 0.95);
}


/* ===== Newsletter Section ===== */
.newsletter{
  padding: 110px 56px;   /* αν θες πιο κοντά/μακριά το αλλάζουμε */
  padding: 120px 56px;
  background: linear-gradient(
  to bottom,
  transparent 50%,
  #0c021f 50%
  );
}

.newsletter__wrap{
  width: min(1240px, 100%);
  margin: 0 auto;
}

.newsletter__card{

  background: rgba(255,255,255,0.92);
  border-radius: 34px;
  padding: 70px 70px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: 60px;

  /* λίγο “καθάρισμα” πάνω στο σκούρο bg */
  box-shadow: 0 12px 30px rgba(90,43,255,0.35);
}

.newsletter__title{
  margin: 0;
  font-size: 56px;
  line-height: 1.05;
  font-weight: 500;
  color: #1a1242;
  letter-spacing: -0.5px;
}

.newsletter__title span{
  font-weight: 800;
}

.newsletter__hint{
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 700;
  color: rgba(26,18,66,0.75);
}

.newsletter__form{
  width: 100%;
  height: 62px;
  border-radius: 999px;
  border: 2px solid rgba(26,18,66,0.35);
  display: flex;
  align-items: center;
  padding: 6px;
  gap: 10px;
  background: rgba(255,255,255,0.6);
}

.newsletter__input{
  flex: 1;
  height: 100%;
  border: none;
  outline: none;
  background: transparent;
  padding: 0 18px;
  font-size: 22px;
  color: #1a1242;
}

.newsletter__input::placeholder{
  color: rgba(26,18,66,0.35);
  font-weight: 600;
}

.newsletter__btn{
  height: 100%;
  padding: 0 26px;
  border-radius: 999px;
  border: none;
  cursor: pointer;

  background: #5a2bff; /* κοντά στο δικό σου μωβ */
  color: #fff;
  font-size: 18px;
  font-weight: 800;

  
}

.newsletter__btn:hover{
  filter: brightness(1.05);
}

.newsletter__fine{
  margin: 10px 0 0;
  font-size: 9px;
  line-height: 1.35;
  color: rgba(26,18,66,0.45);
}
/* Newsletter form fluid scaling */
.newsletter__form{
  width: clamp(250px, 80vw, 640px);
  margin: 0 auto;
}
.newsletter__input{
  min-width: 0;      /* 🔥 ΤΟ ΠΙΟ ΣΗΜΑΝΤΙΚΟ */
  flex: 1 1 auto;
}

.newsletter__btn{
  flex-shrink: 1;    /* να επιτρέπεται να μικραίνει */
  white-space: nowrap;
}

/*====== FOOTER ==========================================================================================================*/
footer{
  background:#0c021f;
}


.footer{
  background:#0c021f;
  padding: 60px 56px 28px;   /* 56 όπως χρησιμοποιείς */
  color:#fff;
}

.footer__inner{
  max-width: 1366px;
  margin: 0 auto;
  display:grid;
  grid-template-columns: 1.1fr 1fr 0.9fr;
  gap: 64px;
  align-items:start;
}

.footer__logo{
  height: 70px;
  width:auto;
  display:block;
  margin-bottom: 35px;
}

.footer__desc{
  margin: 0 0 35px;
  opacity: .82;
  line-height: 1.55;
  max-width: 360px;
}

.footer__social{
  display:flex;
  gap: 14px;
}

.footer__socialBtn{
  width: 50px;
  height: auto;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}
.footer__socialBtn img{
  width: 30px;
  height: auto;
  object-fit:contain;
  opacity:.95;
}

.footer__title{
  margin: 0 0 18px;
  font-size: 18px;
  font-weight: 800;
}

.footer__list{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-direction:column;
  gap: 18px;
}

.footer__item{
  display:flex;
  gap: 14px;
  align-items:flex-start;
}

.footer__icon{
  width: 18px;
  display:inline-block;
  opacity:.9;
  transform: translateY(2px);
}

.footer__linkStrong{
  color:#fff;
  font-weight: 500;
  text-decoration:none;
}
.footer__linkStrong:hover{ opacity:.9; }

.footer__muted{
  font-size: 13px;
  opacity: .65;
  margin-top: 4px;
}


.footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.footer__icon svg {
  width: 18px;
  height: 18px;
  color: #ffffff; /* change to your brand color */
}

.footer__linkStrong {
  text-decoration: none;
  color: #ffffff;
  font-weight: 600;
}

.footer__linkStrong:hover {
  color: #00c2ff; /* optional hover effect */
}


.footer__links{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-direction:column;
  gap: 14px;
}

.footer__link{
  color: rgba(255,255,255,.78);
  text-decoration:none;
  font-weight: 600;
}
.footer__link:hover{
  color:#fff;
}

.footer__bottom{
  max-width: 1366px;
  margin: 44px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.12);
  display:flex;
  gap: 16px;
  flex-wrap:wrap;
  justify-content:space-between;
  font-size: 12.5px;
  opacity:.75;
}

.footer__bottomMuted{ opacity:.75; }


.scrollTopBtn {
  position: fixed;
  bottom: 28px;
  right: 28px;

  width: 44px;
  height: 44px;
  border-radius: 50%;

  border: 1px solid rgba(0,0,0,0.1);
  background: white;
  color: #111;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
  transition: all 0.25s ease;

  opacity: 0;
  pointer-events: none;

  z-index: 999;
}

.scrollTopBtn.show {
  opacity: 1;
  pointer-events: auto;
}

.scrollTopBtn:hover {
  transform: translateY(-3px);
  border-color: rgba(0,0,0,0.2);
}



/*================tablet=======================================================================================*/
/* CTA2 behaves like an image (scales as a whole) */

@media (max-width: 1366px) {
  .cta2__card { zoom: 0.95; }
}

@media (max-width: 1280px) {
  .cta2__card { zoom: 0.92; }
}

@media (max-width: 1200px) {
  .cta2__card { zoom: 0.88; }
}

@media (max-width: 1120px) {
  .cta2__card { zoom: 0.85; }
}

@media (max-width: 1050px) {
  .cta2__card { zoom: 0.82; }
}

@media (max-width: 980px) {
  .cta2__card { zoom: 0.79; }
}

@media (max-width: 910px) {
  .cta2__card { zoom: 0.70; }
}

/* (duplicate of max-width: 1050px - kept as-is) */
@media (max-width: 750px) {
  .cta2__card { zoom: 0.76; }
}


/* ===== HERO THUNDER (tablet) ===== */
@media (max-width: 1200px) {

  .hero__left {
    position: relative; /* να έχει σωστό reference */
  }

  .hero__thunder {
    left: 29% ;
    transform: translateX(-50%) ;
    top: -50px ;
    height: 180px; /* ρύθμισε 190-220 ανάλογα */
  }
}
/* ===== FORM LOGOS (tablet) ===== */
@media (max-width: 1000px) {

  /* να μην κόβει/πετάει περιεχόμενο */
  .formCard {
    overflow: hidden;
  }

  /* logo row να χωράει και να “σπάει” αν χρειαστεί */
  .formCard__logos{
    display:flex;
    align-items:center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 10px;
    flex-wrap: wrap;

    
  }

  .formCard__logoLeft {
    height: 22px; /* λίγο μικρότερο για tablet */
  }

  .formCard__logoRight {
    height: 18px;
    padding-top: 0;
  }



  .hero__title{
    margin: 0;
    font-size: 31px;
    line-height: 1.25;
    font-weight: 600;
    letter-spacing: 0.2px;
  }

  .hero__sub{
    margin: 44px 0 0;
    font-size: 18px;
    line-height: 1.5;
    opacity: 0.95;
    max-width: 520px;
  }
}






/* ===== TABLET / MEDIUM (fix layout before stacking) ===== */
@media (max-width: 1200px) {

  /* Μάζεμα γενικά */
  :root {
    --side-pad: 24px;
    --icon: 38px;
    --icon-gap: 24px;
    --phone-size: 25px;
  }



  /* HEADER: κόβουμε τα μεγάλα padding-top που χαλάνε tablet */
  .brand {
    padding-top: 50px;
  }

  .topbar__right {
    padding-top: 50px;
  }





.phone-icon {
  height: 50px;

}

  /* HERO spacing */
  .hero {
    padding: 0 var(--side-pad);
  }

  .hero__wrap {
    padding-top: 120px; /* αντί για 200px που βαραίνει σε μεσαία */
  }

  .hero__card {
    padding: 34px 34px;
    gap: 26px;
  }

  /* thunder: ΜΗΝ το δένεις με left:245px σε tablet */
  .hero__left {
    padding-top: 110px; /* χώρο για thunder */
    padding-left: 0;
  }

  /* FORM: μην είναι fixed height σε μεσαία, αλλιώς σπάει */
  .formCard {
    height: auto;
    padding: 28px 26px 22px;
  }

  .formCard__title {
    font-size: 30px;
  }

  .field__input {
    height: 54px;
    font-size: 17px;
  }

  .btn {
    width: 80%;
    font-size: 20px;
  }

  /* ================= STEPS ================= */
  .steps {
    margin-top: 140px;
    padding: 80px 56px 90px; /* αντί για 136px L/R */
    min-height: auto;
  }

  .steps__title {
    margin-bottom: 40px;
    font-size: 24px;
  }

  .step__num {
    font-size: 82px; /* πιο μικρό */
  }

  .step__text {
    margin-top: 28px;
    font-size: 15px;
  }

  .step__arrow {
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 14px solid #4765f3;
  }

  /* ================= ABOUT ================= */
  .about {
    padding: 90px 24px 90px;
  }

  .about__title {
    font-size: 34px;
    margin-bottom: 42px;
  }

  .about__p {
    font-size: 17px;
    margin-bottom: 46px;
  }

  .about__mark {
    height: 92px;
    margin: 34px auto 18px;
  }

  .about__stats {
    display: grid;
    grid-auto-flow: column;       /* δεν σπάει σε 2 γραμμές */
    grid-auto-columns: 1fr;       /* 4 ίσες στήλες */
    grid-template-columns: unset; /* ακυρώνει παλιά grid-template-columns */
    gap: 26px;
    align-items: start;
  }

  .stat__icon {
    width: 64px;
    height: 64px;
  }

  .stat__text {
    font-size: 14px;
  }

  /* ================= CTA2 (2η φόρμα) ================= */
  .cta2 {
    padding: 60px var(--side-pad) 70px;
  }

  .cta2__card {
    gap: 40px;
    padding-left: 32px;
  }

  .cta2__title {
    font-size: 30px;
    padding-top: 40px;
    text-align: center;
  }

  .cta2__desc {
    font-size: 17px;
    text-align: center;
  }

  .cta2__benefits {
    margin-top: 34px;
    padding: 22px;
  }

  .benefit__text {
    font-size: 16px;
  }

  .cta2__img {
    display: block;
    position: absolute;
    right: 26px;
    top: 50%;
    transform: translateY(-50%);
  }

  .cta2__right {
    padding: 34px 28px 28px;
  }

  .cta2__formTitle {
    font-size: 28px;
  }

  .cta2Form__btn {
    width: 80%;
  }

  /* ================= NEWSLETTER ================= */
  .newsletter {
    padding: 90px 24px;
  }

  .newsletter__card {
    padding: 54px 44px;
    gap: 40px;
  }

  .newsletter__title {
    font-size: 44px;
  }

  .newsletter__input {
    font-size: 18px;
  }

  /* ================= FOOTER ================= */
  .footer {
    padding: 54px 24px 24px;
  }

  .footer__inner {
    grid-template-columns: 1.1fr 1fr;
    gap: 44px;
  }
}




















/* ====== RESPONSIVE mobile =================================================================================== */

/*===header===*/
@media (max-width: 980px){

  /* HEADER: κρύβουμε τη δεξιά πλευρά (τηλέφωνο + social) */
  .topbar__right{
    display: none;
  }

  /* Κεντράρουμε το logo */
  .topbar{
    padding: 75px 0 0px;
    justify-content: center;
  }

  .topbar__inner{
    justify-content: center;
  }

  .brand{
    padding-top: 0;          /* στο mobile μη το κατεβάζεις */
    padding-left: 0;
    justify-content: center;
  }

  .brand__logo{
    height: 80px;            /* προσαρμογή για κινητό */
  }

}

@media (max-width: 768px){

  .hero__wrap{ 
    padding-top: 40px;       /* αντί για 200px στο mobile */
  }

  .hero__card{
    margin-top: 70px;        /* λιγότερο από 150px για να μη ξεφεύγει */
    grid-template-columns: 1fr;
    padding: 28px 22px;      /* πιο tight */
  }

  .hero__left{
    padding-top: 130px;       /* χώρο για thunder πάνω */
    padding-left: 0;
    text-align: center;
  }


  .hero__sub{
    margin-top: 20px;
    max-width: none;         /* να γεμίζει */
  }
}

@media (max-width: 768px){

  .formCard{
    height: auto;            /* ΠΟΛΥ σημαντικό */
    padding: 24px 18px 18px;
    text-align: left;
  }

  .formCard__title{
    font-size: 26px;
    margin: 4px 0 16px;
  }

  .field__input{
    height: 52px;
    font-size: 16px;
  }

  .btn{
    width: 100%;
    font-size: 18px;
  }

  .consent{
    font-size: 12px;
  }

  .formCard__logos{
    margin-top: 22px;
    gap: 10px;
    padding-left:10px;
    padding-right:10px;
  }
  .formCard__logoLeft,
  .formCard__logoRight{
    height: clamp(18px, 4.2vw, 30px); /* ✅ μικραίνει όταν στενεύει/zoom */
  }

}
@media (max-width: 768px){

    body::before{

    background-size: cover;        /* ΚΑΛΥΠΤΕΙ ΟΛΗ ΤΗΝ ΟΘΟΝΗ */
    background-position: 75% 60%;


  }
  .hero__card{
    margin-top: 150px;
    grid-template-columns: 1fr;
  }
  .brand{ padding-left: 0; }

  .hero{ padding: 0 18px; text-align: center;}
  .hero__wrap{ padding-top: 40px; }
  .topbar__right{ gap: 16px; }
  .phone{ font-size: 16px; }
}

@media (max-width: 560px){
  .social__icon{ width: 34px; height: 34px; }
  .hero__title{ font-size: 28px; }
  .hero__sub{ font-size: 16px; margin-top: 24px; }
  .formCard__title{ font-size: 26px; }
  .btn{ width: 80%; }
}


@media (max-width: 768px){


  .steps{
    height: auto;        /* ξεκλειδώνει */
    padding-bottom: 80px; /* λίγο αέρα */
    
    
  }

  .steps::after{
    background-position: center top; /* framing */
    /* αφήνουμε cover, δεν το πειράζουμε */
  }


  .steps__title{
    text-align: center;
    min-width: 250px;
  }


  .steps__card{
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  /* κάθε step γίνεται row */
  .step{
    display: flex;
    align-items: left;
    text-align: left;
    gap: 20px;
  }

  /* αριθμός αριστερά */
  .step__num{
    font-size: 60px;
    min-width: 60px;
    margin-left: -40px;
  }

  /* κείμενο δεξιά */
  .step__text{
    margin: 0;
    margin-left:10px;
    min-width:200px;
    font-size: 17px;
  }

  /* τα βελάκια γίνονται κάτω */
  .step__arrow{
    width: 0;
    height: 0;

    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 16px solid #4765f3;

    border-bottom: none;


      /* ✅ κάτω από τον αριθμό */
    align-self: center;
    margin-left: -30px;   /* παίξε 10–30px μέχρι να κουμπώσει */
    margin-top: 8px;   /* ανεβάζει το βελάκι πιο κοντά στο row */
    margin-bottom: 10px;
    opacity: 0.5;
  }
}

  /* ====== MOBILE ====== */
  @media (max-width: 980px){
    .about{
      padding: 90px 18px 90px;
    }
    .about__title{
      font-size: 40px;
    }
    .about__stats{
      grid-template-columns: repeat(2, 1fr);
      gap: 34px;
    }
  }

  @media (max-width: 520px){
    .about__stats{
      grid-template-columns: 1fr;
      gap: 26px;
    }
  }

  /* Desktop κρατάς grid */
  @media (min-width: 521px){
    .trustMarquee{ display:none; }
  }

  @media (max-width: 520px){

    .about__stats{ display:none; }

    .trustMarquee{
      overflow: hidden;
      width: 100%;
      margin-top: 26px;
    }

    .trustMarquee__track{
      display: flex;
      animation: carouselMove 16s infinite;
    }

    .trustMarquee .stat{
      flex: 0 0 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    .trustMarquee .stat__icon{
      width: 80px;
      height: 80px;
    }

    @keyframes carouselMove{
    
      0%   { transform: translateX(0); }
      20%  { transform: translateX(0); }
    
      25%  { transform: translateX(-100%); }
      45%  { transform: translateX(-100%); }
    
      50%  { transform: translateX(-200%); }
      70%  { transform: translateX(-200%); }
    
      75%  { transform: translateX(-300%); }
      95%  { transform: translateX(-300%); }
    
      100% { transform: translateX(0); } }
}

/* Responsive */
@media (max-width: 980px){
  .cta2{ padding: 44px 18px 64px; }
  .cta2__card{
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 28px;
  }

  .cta2__right{
    padding: 28px;
  }
  .cta2Form__btn{ width: 80%; }
}
@media (max-width: 470px){
  .cta2__img{
    display: none;
  }

  /* αφαιρούμε και το extra padding που κρατούσε χώρο για την εικόνα */
  .cta2__benefits{
    padding-right: var(--cta2-pad);
  }
}
/* ===== Mobile ===== */
@media (max-width: 980px){
  .newsletter{
    padding: 80px 18px;
  }

  .newsletter__card{
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 38px 26px;
    text-align: left;
  }

  .newsletter__title{
    font-size: 40px;
  }

  .newsletter__form{
    height: 56px;
  }

  .newsletter__input{
    font-size: 18px;
  }

  .newsletter__btn{
    font-size: 16px;
    padding: 0 18px;
  }
}

@media (max-width: 980px){
  .newsletter{
    padding: 80px 18px;
  }

  .newsletter__card{
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 38px 26px;
    text-align: left;
  }

  .newsletter__title{
    font-size: 35px;
  }

  .newsletter__form{
    height: 56px;
  }

  .newsletter__input{
    font-size: 16px;
  }

  .newsletter__btn{
    font-size: 14px;
    padding: 0 16px;
  }
}


/* Responsive */
@media (max-width: 980px){
  .footer{ padding: 70px 18px 24px; }
  .footer__inner{
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .footer__desc{ max-width: none; }
}

@media (max-width: 768px) {
  .hero__thunder{
    left: 54% ;
    top: -55px;
    height: 190px;
    background:transparent;
    transform: translateX(-50%);
  }
}
/* ===== GW SUCCESS MODAL (clean, no conflicts) ===== */
/* ================== SUCCESS MODAL (ISOLATED) ================== */



/* ===== Modal (Success Popup) ===== */


.modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}

.modal.is-open {
  display: block;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(3px);
}

.modal__dialog {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  
  width: min(560px, calc(100% - 32px));
  background: #e8ecfa;
  text-align: center;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  padding: 22px 22px 18px 22px;
}

@keyframes modalPop {
  from { transform: translateY(10px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

.modal__close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 38px;
  height: 38px;
  border: 0;
  background: transparent;
  font-size: 22px;
  cursor: pointer;
  line-height: 38px;
  opacity:0.9;
}



.modal__header {
  flex-direction: column;
  justify-content: center;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}

.success__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #5c54ef;
  display: grid;
  place-items: center;

  color: #ffffff;
  font-size: 34px;
  font-weight: 900;
  line-height: 1;

  /* optional: a little pop */
  transform: translateY(-6px);
}


.modal__title {
  margin: 0;
  font-size: 28px;
  font-weight: 800;
  color: rgba(11, 0, 62, 0.9);
}

.modal__text {
  margin: 0;
  line-height: 1.55;
  color: rgba(11, 0, 62, 0.9);
  font-size: 20px;
  padding: 10px 6px 14px 6px;
}


.modal__logoWrap {
  display: flex;
  justify-content: center;
  margin: 6px 0 14px 0;
}

.modal__logo {
  width: auto;          /* άλλαξέ το αν θες */
  height: 45px;
  background: transparent; /* override από το παλιό */
  padding: 0;              /* override από το παλιό */
  border-radius: 0;
}


/* === GLOBAL anti-overflow === */
html, body{
  width: 100%;
  max-width: 100%;
  overflow-x: clip; /* καλύτερο από hidden (όπου υποστηρίζεται) */
}

@supports not (overflow-x: clip){
  html, body{ overflow-x: hidden; }
}

/* τα media/images να μη ξεφεύγουν ποτέ */
img, svg, video, canvas{
  max-width: 100%;
  height: auto;
}

/* =========================================================
   COOKIE SYSTEM (Premium Dark Style)
========================================================= */

/* ===== Banner ===== */
.cookie-banner{
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1100px, calc(100% - 32px));
  background: rgba(20, 10, 80, 0.95);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border-radius: 18px;
  padding: 22px 26px;
  z-index: 10000;
  box-shadow: 0 20px 60px rgba(0,0,0,0.45);
  display: none;
}

.cookie-banner.is-open{
  display: block;
}

.cookie-banner__inner{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.cookie-banner__title{
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 800;
}

.cookie-banner__text p{
  margin: 0;
  font-size: 14px;
  opacity: 0.9;
  line-height: 1.5;
}

.cookie-banner a{
  color: #ffffff;
  font-weight: 700;
  text-decoration: underline;
}

.cookie-banner__actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ===== Buttons ===== */
.cookie-btn{
  padding: 10px 18px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 14px;
  transition: 0.25s ease;
}

.cookie-btn--primary{
  background: #7c3fff;
  color: #fff;
}

.cookie-btn--primary:hover{
  background: #8e55ff;
}

.cookie-btn--secondary{
  background: rgba(255,255,255,0.12);
  color: #fff;
}

.cookie-btn--secondary:hover{
  background: rgba(255,255,255,0.20);
}

.cookie-btn--ghost{
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
}

.cookie-btn--ghost:hover{
  background: rgba(255,255,255,0.1);
}

/* ===== Modal ===== */
.cookie-modal-backdrop{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(3px);
  z-index: 10001;
  display: none;
}

.cookie-modal{
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(620px, calc(100% - 32px));
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 25px 80px rgba(0,0,0,0.45);
  z-index: 10002;
  display: none;
  overflow: hidden;
  color: #1a1242;
}

.cookie-modal__header{
  padding: 24px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.cookie-modal__header h3{
  margin: 0 0 6px;
  font-size: 20px;
  font-weight: 900;
}

.cookie-modal__header p{
  margin: 0;
  font-size: 14px;
  opacity: 0.7;
}

.cookie-modal__close{
  border: none;
  background: rgba(0,0,0,0.06);
  border-radius: 12px;
  width: 38px;
  height: 38px;
  font-size: 20px;
  cursor: pointer;
}

.cookie-modal__body{
  padding: 18px 24px;
}

.cookie-option{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  gap: 20px;
}

.cookie-option:last-child{
  border-bottom: none;
}

.cookie-option h4{
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 900;
}

.cookie-option p{
  margin: 0;
  font-size: 13px;
  opacity: 0.7;
}

.cookie-option__right{
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ===== Switch ===== */
.cookie-switch{
  position: relative;
  width: 48px;
  height: 28px;
}

.cookie-switch input{
  display: none;
}

.cookie-slider{
  position: absolute;
  inset: 0;
  background: #ddd;
  border-radius: 999px;
  cursor: pointer;
  transition: .2s;
}

.cookie-slider:before{
  content:"";
  position:absolute;
  width: 22px;
  height: 22px;
  left: 3px;
  top: 3px;
  background: #fff;
  border-radius: 50%;
  transition: .2s;
  box-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.cookie-switch input:checked + .cookie-slider{
  background: #7c3fff;
}

.cookie-switch input:checked + .cookie-slider:before{
  transform: translateX(20px);
}

.cookie-badge{
  font-size: 12px;
  font-weight: 700;
  background: rgba(124,63,255,0.15);
  color: #7c3fff;
  padding: 6px 10px;
  border-radius: 999px;
}

/* ===== Footer ===== */
.cookie-modal__footer{
  padding: 20px 24px;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  background: #f7f7fb;
  flex-wrap: wrap;
}

/* ===== Responsive ===== */
@media (max-width: 768px){
  .cookie-banner{
    bottom: 0;
    border-radius: 0;
    width: 100%;
  }

  .cookie-modal{
    width: calc(100% - 20px);
  }
}