/* ====== 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;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;

  background-image: url("assets/couple_laptop.png");
  background-size: 130%;        /* ΚΑΛΥΠΤΕΙ ΟΛΗ ΤΗΝ ΟΘΟΝΗ */
  background-position: center;
  background-repeat: no-repeat;

  opacity: 0.25;
  z-index: -2;
}

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: #ff4576; /* Το χρώμα που θες */
  
  opacity:0.9;

  -webkit-mask: url("assets/phone.png") no-repeat center;
  mask: url("assets/phone.png") no-repeat center;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.phone{
  font-size: var(--phone-size);
  color: var(--white);
  text-decoration:none;
  font-weight: 600;
  white-space: nowrap;
  padding-left:
}

/* ====== 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;
  filter: drop-shadow(0 18px 28px rgba(0,0,0,0.45));
}




.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: 500px;
  color: #bdbde0;
  margin-bottom: 60px;
}

/* background image with 9% opacity */
.steps::before{
  content:"";
  position:absolute;
  inset:0;
  background:#0b003e; /* ή άλλο μπλε αν θες */
  z-index:-2;
}

/* optional: keep dark tint consistent */
.steps::after{
  content:"";
  position:absolute;
  inset:0;

  background-image: url("assets/happy_family.png");
  background-size: 120%;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.11;       /* μόνο η φωτο έχει 9% */
  z-index:-1;
}

/* 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);
  border: 1px solid rgba(255,255,255,0.15);
}

/* 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);
}


/*====== 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% !important;
    transform: translateX(-50%) !important;
    top: -50px !important;
    height: 180px !important; /* ρύθμισε 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{ height: 30px; }
  .formCard__logoRight{ height: 24px; padding-top: 0; }
}
@media (max-width: 768px){

    body::before{

    background-size: 350%;        /* ΚΑΛΥΠΤΕΙ ΟΛΗ ΤΗΝ ΟΘΟΝΗ */
    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;
    background-size: 390%;
  }  

  .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;

    opacity: 0.89;

      /* ✅ κάτω από τον αριθμό */
    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%; }
}

/* ===== 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;
  }
}

/* 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% !important;
    top: -55px !important;
    height: 190px !important;
    transform: translateX(-50%) !important;
  }
}
/* ===== GW SUCCESS MODAL (clean, no conflicts) ===== */
/* ================== SUCCESS MODAL (ISOLATED) ================== */
/* Κλειδώνει το modal ώστε να μην επηρεάζεται από flex/grid/layout του site */

#successModal{
  position: fixed;
  inset: 0;
  display: none;
  z-index: 2147483647;
  isolation: isolate;          /* κόβει stacking context issues */
}

#successModal.is-open{
  display: grid;               /* τέλειο centering */
  place-items: center;
}

/* overlay */
#successModal .modal__overlay{
  position: fixed;
  inset: 0;
  background: rgba(7, 10, 24, 0.62);
  backdrop-filter: blur(4px);
}

/* dialog */
#successModal .modal__dialog{
  position: relative;
  width: min(760px, calc(100% - 32px));
  margin: 0;                   /* ΜΗΝ αφήνεις margin top σε desktop */
  border-radius: 18px;
  background: #EEF0FF;
  box-shadow: 0 26px 70px rgba(0,0,0,0.35);
  overflow: hidden;

  /* ΚΟΒΕΙ ΟΛΑ τα “τεράστια ύψη” από άλλα rules */
  height: auto !important;
  min-height: 0 !important;
  max-height: calc(100vh - 32px);
  overflow: auto;

  /* ΚΟΒΕΙ flex/grid stretch */
  display: block !important;
  flex: none !important;
  align-self: auto !important;
  justify-self: auto !important;
}

/* content */
#successModal .modal__content{
  position: relative;
  padding: 38px 44px 44px 44px;
  text-align: center;
}

/* close */
#successModal .modal__close{
  position:absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.08);
  font-size: 22px;
  cursor: pointer;
  line-height: 40px;
  color: rgba(15, 23, 42, 0.55);
}

/* check */
#successModal .modal__checkWrap{
  display:flex;
  justify-content:center;
  margin-bottom: 10px;
}
#successModal .modal__checkCircle{
  width: 56px;
  height: 56px;
  border-radius: 999px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size: 26px;
  font-weight: 900;
  background: #4F46E5;
  color: #fff;
  box-shadow: 0 10px 26px rgba(79, 70, 229, 0.35);
}

#successModal .modal__title{
  margin: 12px 0 10px 0;
  font-size: 30px;
  font-weight: 900;
  color: #0F172A;
}

#successModal .modal__text{
  margin: 0 auto 18px auto;
  max-width: 560px;
  font-size: 16px;
  line-height: 1.6;
  color: #334155;
}

#successModal .modal__brandRow{
  display:flex;
  justify-content:center;
  margin-top: 10px;
}
#successModal .modal__brandLogo{
  height: 40px;
  width: auto;
  object-fit: contain;
  opacity: 0.95;
}

/* social bottom-left */
#successModal .modal__social{
  position: absolute;
  left: 26px;
  bottom: 18px;
  display:flex;
  gap: 14px;
  align-items:center;
}

#successModal .modal__socialIcon{
  width: 34px;
  height: 34px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius: 10px;
  text-decoration: none;
  opacity: 0.28;
  transition: opacity .15s ease, transform .15s ease;
}

#successModal .modal__socialIcon img{
  width: 34px;
  height: 34px;
  object-fit: contain;
  display:block;
  filter: grayscale(1);
}

#successModal .modal__socialIcon:hover{
  opacity: 0.9;
  transform: translateY(-1px);
}
#successModal .modal__socialIcon:hover img{
  filter: none;
}

/* mobile */
@media (max-width: 520px){
  #successModal .modal__content{ padding: 28px 18px 52px 18px; }
  #successModal .modal__title{ font-size: 24px; }
  #successModal .modal__social{ left: 16px; bottom: 14px; }
}