.c-mybigproject {
    font-size: 1em;
}
@media (max-width: 768px) {
    .c-mybigproject {
        font-size: 0.8em;
    }
}

.c-belowsitetitle{
font-size: 1.4em;
font-weight: 300;
line-height: 1em;
color: #6fb513;
text-align: center;
}
.c-belowsitetext{
font-size: 1em;
font-weight: 300;
margin-bottom: 0px;
line-height: 1em;
text-align: center;
}


 :root {
      --color-bg: #ffffff;
      --color-primary: #E20074;
      --color-primary-dark: #C2005E;
      --color-text-main: #222222;
      --color-muted: #F6F6F6;
      --color-footer-bg: #222222;

      --color-gray-50: #F9FAFB;
      --color-gray-100: #F3F4F6;
      --color-gray-300: #D1D5DB;
      --color-gray-600: #4B5563;
      --color-gray-700: #374151;
      --color-white: #ffffff;

      --radius-xl: 24px;
      --radius-2xl: 32px;
      --shadow-lg: 0 10px 30px rgba(0,0,0,0.12);
      --shadow-xl: 0 18px 40px rgba(0,0,0,0.18);
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      background: var(--color-bg);
      color: var(--color-text-main);
    }

    img {
      max-width: 100%;
      display: block;
    }

    .page {
      min-height: 100vh;
      background: var(--color-bg);
    }

    .container {
      width: 100%;
      max-width: 1120px;
      margin: 0 auto;
      padding: 0 1rem;
    }

    @media (min-width: 1024px) {
      .container {
        padding: 0 2rem;
        max-width: 100%;
      }
    }

    /* Generic utilities */
    .btn {
      border: none;
      cursor: pointer;
      font: inherit;
      border-radius: 999px;
      padding: 0.9rem 2rem;
      font-weight: 700;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      transition: all 0.25s ease;
      box-shadow: var(--shadow-lg);
      text-decoration: none;
    }

    .btn-primary {
      background: var(--color-white);
      color: var(--color-primary);
    }

    .btn-primary:hover {
      background: #f3f4f6;
      transform: translateY(-2px) scale(1.02);
      box-shadow: var(--shadow-xl);
    }

    .btn-solid {
      background: var(--color-primary);
      color: var(--color-white);
    }

    .btn-solid:hover {
      background: var(--color-primary-dark);
      box-shadow: var(--shadow-lg);
      transform: translateY(-2px);
    }

    .card {
      background: var(--color-white);
      border-radius: var(--radius-2xl);
      box-shadow: var(--shadow-lg);
      overflow: hidden;
    }

    .card-inner {
      padding: 2rem;
    }

    @media (min-width: 1024px) {
      .card-inner {
        padding: 2.5rem;
      }
    }

    /* Simple scroll animation */
    [data-animate] {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .animate-in {
      opacity: 1;
      transform: translateY(0);
    }

    /* HERO SECTION */
    .hero {
      position: relative;
      overflow: hidden;
    }
    .hero .container {
      padding: 0;
    }

    .hero .container .hero-qr-row a {
       color: white;
       font-weight: bold;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1fr;
      min-height: 90vh;
      gap: 0;
    }

    @media (min-width: 1024px) {
      .hero-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    .hero-left {
      background: var(--color-primary);
      color: var(--color-white);
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 4rem 1.5rem;
      border-radius: var(--radius-2xl);
      margin-top: 1.5rem;
    }

    @media (min-width: 1024px) {
      .hero-left {
padding: 5rem 6rem 5rem 3rem;
        border-radius: 0;
        border-top-right-radius: 0px;
        border-bottom-right-radius: 0px;
        margin-top: 0;
        margin-right: -3rem;
      }
    }

    .hero-logo-title {
      font-size: 2.25rem;
      font-weight: 900;
      letter-spacing: -0.04em;
      margin: 0;
    }

    @media (min-width: 1024px) {
      .hero-logo-title {
        font-size: 3rem;
      }
    }

    .hero-logo-sub {
      margin-top: 0.25rem;
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.25em;
      opacity: 0.9;
      text-transform: uppercase;
    }

    .hero-main-title {
      margin-top: 2.5rem;
      margin-bottom: 1.5rem;
      font-size: 2rem;
      font-weight: 700;
      line-height: 1.1;
    }

    @media (min-width: 1024px) {
      .hero-main-title {
        font-size: 3rem;
      }
    }

    #contenttop h2.hero-subhead {
      font-size: 1.5rem;
      font-weight: 600;
      line-height: 1.2;
      margin-bottom: 1.5rem;
      text-align: left;
      color: white;
      border-bottom: 0px;
    }

    @media (min-width: 1024px) {
      #contenttop h2.hero-subhead {
        font-size: 1.875rem;
      }
    }

    .hero-text {
      font-size: 1rem;
      line-height: 1.7;
      opacity: 0.95;
      margin-bottom: 2rem;
    }

    @media (min-width: 1024px) {
      .hero-text {
        font-size: 1.0625rem;
      }
    }

    .hero-qr-row {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-top: 2rem;
    }

    .hero-qr-box {
      background: var(--color-white);
      padding: 0.75rem;
      border-radius: 18px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

    .hero-qr-text {
      font-size: 1rem;
      opacity: 1;
      line-height: 1.5;
    }

    .hero-right {
      position: relative;
      margin-top: 1.5rem;
    }

    @media (min-width: 1024px) {
      .hero-right {
        margin-top: 0;
      }
    }

    .hero-right-inner {
      position: relative;
      height: 100%;
      min-height: 400px;
      border-radius: var(--radius-2xl);
      overflow: hidden;
    }

    @media (min-width: 1024px) {
      .hero-right-inner {
        min-height: 100%;
        border-radius: var(--radius-2xl);
      }
    }

    .hero-image {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom right,
        rgba(226, 0, 116, 0.2),
        rgba(226, 0, 116, 0)
      );
    }

    /* BENEFITS SECTION */
    .section-muted {
      background: var(--color-muted);
      padding: 5rem 0;
    }

    @media (min-width: 1024px) {
      .section-muted {
        padding: 8rem 0;
      }
    }

    .section-white {
      background: var(--color-white);
      padding: 5rem 0;
    }

    @media (min-width: 1024px) {
      .section-white {
        padding: 8rem 0;
      }
    }

    .section-header {
      text-align: center;
      max-width: 48rem;
      margin: 0 auto 2rem auto;
    }

    #contenttop h2.section-title {
      font-size: 2rem;
      font-weight: 800;
      color: var(--color-text-main);
      line-height: 1.2;
      margin-bottom: 1rem;
      font-weight: bold;
      border-bottom: 0;
    }

    @media (min-width: 1024px) {
      .section-title {
        font-size: 3rem;
      }
    }

    .section-subtitle {
      font-size: 1.0625rem;
      color: var(--color-gray-700);
      line-height: 1.7;
    }

    @media (min-width: 1024px) {
      .section-subtitle {
        font-size: 1.125rem;
      }
    }

    .benefits-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
      max-width: 64rem;
      margin: 0 auto;
    }

    @media (min-width: 768px) {
      .benefits-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }
    }

    .benefit-icon {
      width: 4rem;
      height: 4rem;
      border-radius: 18px;
      background: rgba(226, 0, 116, 0.08);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.5rem;
    }

    .benefit-title {
      font-size: 1.125rem;
      font-weight: 700;
      color: var(--color-text-main);
      margin-bottom: 1rem;
      line-height: 1.3;
    }

    .benefit-text {
      color: var(--color-gray-600);
      font-size: 0.98rem;
      line-height: 1.7;
    }

    .card-hover {
      transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    }

    .card-hover:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-xl);
      background: var(--color-white);
    }

    /* QR DEMO SECTION */
    .qr-demo-card {
      background: linear-gradient(to bottom right,
        rgba(226, 0, 116, 0.05),
        rgba(226, 0, 116, 0.12)
      );
      border-radius: var(--radius-2xl);
      padding: 3rem;
      max-width: 400px;
      margin: 0 auto;
      margin-bottom: 2rem;
    text-align: center;
    }

    .qr-demo-card img {
    width: 150px;
    height: auto;
}

    .qr-demo-inner {
      background: var(--color-white);
      padding: 2.5rem;
      border-radius: 24px;
      display: inline-block;
      box-shadow: var(--shadow-xl);
    }

    .qr-demo-subtext {
      font-size: 1.0625rem;
      color: var(--color-gray-700);
      line-height: 1.7;
      margin-bottom: 1rem;
    text-align: center;
    font-weight: bold;
    }

    .qr-demo-bottom {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.75rem;
      color: var(--color-gray-600);
      font-size: 0.875rem;
    }

    .qr-demo-bottom p {
      margin-bottom: 0;
    }

    /* PRICING SECTION */
    .pricing-wrapper {
      max-width: 72rem;
      margin: 0 auto;
    }

    .pricing-box {
      background: var(--color-white);
      border-radius: var(--radius-2xl);
      box-shadow: var(--shadow-xl);
      overflow: hidden;
    }

    .pricing-header-grid {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
    }

    .pricing-header-empty {
      padding: 1.5rem;
    }

    .pricing-plan-header {
      background: linear-gradient(to bottom right, var(--color-primary), var(--color-primary-dark));
      color: var(--color-white);
      padding: 1.5rem;
      text-align: center;
    }

    @media (min-width: 1024px) {
      .pricing-plan-header {
        padding: 2rem;
      }
    }

    .pricing-plan-header.basic {
      border-top-left-radius: 40px;
    }

    .pricing-plan-name {
      font-size: 1.5rem;
      font-weight: 900;
      margin-bottom: 0.25rem;
    }

    @media (min-width: 1024px) {
      .pricing-plan-name {
        font-size: 1.875rem;
      }
    }

    .pricing-plan-price {
      font-size: 1.875rem;
      font-weight: 800;
    }

    @media (min-width: 1024px) {
      .pricing-plan-price {
        font-size: 2rem;
      }
    }

    .pricing-plan-sub {
      font-size: 0.875rem;
      opacity: 0.9;
      margin-top: 0.25rem;
    }

    @media (min-width: 1024px) {
      .pricing-plan-sub {
        font-size: 0.95rem;
      }
    }

    .pricing-features {
      border-top: 1px solid var(--color-gray-100);
    }

    .pricing-row {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      border-bottom: 1px solid var(--color-gray-100);
      transition: background 0.2s ease;
    }

    .pricing-row:hover {
      background: var(--color-gray-50);
    }

    .pricing-cell-feature {
      padding: 1rem;
      font-size: 0.95rem;
      color: var(--color-gray-700);
      font-weight: 500;
    }

    @media (min-width: 1024px) {
      .pricing-cell-feature {
        padding: 1.5rem;
        font-size: 1rem;
      }
    }

    .pricing-cell-plan {
      padding: 1rem;
      border-left: 1px solid var(--color-gray-100);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.95rem;
      font-weight: 600;
      color: var(--color-gray-700);
    }

    .pricing-cell-plan img {
      height: 14px;
      width: auto;
    }

    @media (min-width: 1024px) {
      .pricing-cell-plan {
        padding: 1.5rem;
        font-size: 1rem;
      }
    }

    .pricing-cell-dash {
      color: var(--color-gray-300);
      font-size: 1.25rem;
    }

    .pricing-actions {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      background: var(--color-gray-50);
      padding: 1.5rem;
      gap: 0;
    }

    @media (min-width: 1024px) {
      .pricing-actions {
        padding: 2rem;
      }
    }

    .pricing-actions-empty {
      /* left empty */
    }

    .pricing-actions-btn {
      padding: 0 1rem;
    }

    .pricing-notes {
      margin-top: 2rem;
      font-size: 0.875rem;
      color: var(--color-gray-600);
      text-align: center;
    }

    @media (min-width: 1024px) {
      .pricing-notes {
        text-align: left;
      }
    }

    .pricing-notes p {
      margin: 0.15rem 0;
    }

    .pricing-notes p:last-child {
      text-align: left;
      font-style: italic;
    }

    /* EXTRA SERVICE SECTION */


    .extra-service-inner {
      background: linear-gradient(to right, var(--color-primary), var(--color-primary-dark));
      border-radius: var(--radius-2xl);
      box-shadow: var(--shadow-xl);
      color: var(--color-white);
      padding: 2rem;
    }

    @media (min-width: 1024px) {
      .extra-service-inner {
        padding: 3rem;
      }
    }

    .extra-service-content {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      align-items: center;
    }

    @media (min-width: 1024px) {
      .extra-service-content {
        flex-direction: row;
        align-items: center;
      }
    }

    .extra-service-icon-box {
      width: 5rem;
      height: 5rem;
      border-radius: 20px;
      background: rgba(255,255,255,0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .extra-service-text {
      text-align: center;
      font-size: 1.125rem;
      font-weight: 700;
      line-height: 1.5;
    }

    @media (min-width: 1024px) {
      .extra-service-text {
        text-align: left;
        font-size: 1.25rem;
      }
    }

    /* FOOTER */
    .footer {
      background: var(--color-footer-bg);
      color: var(--color-white);
      padding: 3rem 0;
    }

    .footer-top {
      display: flex;
      flex-direction: column;
      gap: 2rem;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 2rem;
    }

    @media (min-width: 1024px) {
      .footer-top {
        flex-direction: row;
        align-items: center;
      }
    }

    .footer-logo-title {
      font-size: 1.875rem;
      font-weight: 900;
      margin: 0;
    }

    .footer-logo-sub {
      margin-top: 0.25rem;
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.25em;
      opacity: 0.7;
      text-transform: uppercase;
    }

    .footer-contact {
      text-align: center;
    }

    .footer-contact a {
      color: white;
    }

    @media (min-width: 1024px) {
      .footer-contact {
        text-align: right;
      }
    }

    .footer-contact p {
      margin: 0.15rem 0;
      font-size: 1rem;
      opacity: 1;
    }

    .footer-contact p:first-child {
      font-weight: 600;
      opacity: 1;
      margin-bottom: 0.4rem;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.1);
      padding-top: 1.5rem;
      text-align: center;
      font-size: 0.875rem;
      opacity: 0.65;
    }

    .footer-bottom span {
      font-weight: 600;
    }

    /* Icon helpers */
    .icon-lg {


    }

    .icon-xl {
      width: 3rem;
      height: 3rem;
    }

    .icon-hero-qr {
      width: 4rem;
      height: 4rem;
    }

    .icon-check {
      width: 1.75rem;
      height: 1.75rem;
    }

    .icon-muted {
      color: var(--color-gray-300);
    }

    .icon-primary {
      color: var(--color-primary);
    }


/* NAVIGATION */
    .notloggedin .main-nav {
      position: fixed;
      inset-inline: 0;
      top: 0;
      z-index: 50;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(12px);
      box-shadow: 0 8px 24px var(--color-shadow-soft);
      transform: translateY(-100%);
      opacity: 0;
      animation: nav-slide-down 0.5s ease forwards;
    }

    @keyframes nav-slide-down {
      to {
        transform: translateY(0);
        opacity: 1;
      }
    }

    .main-nav-inner {
      height: 5rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1.5rem;
    }

    /* Logo */
    .nav-logo {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      border: none;
      background: transparent;
      padding: 0;
      cursor: pointer;
    }

    .nav-logo-title {
      font-size: 1.5rem;
      font-weight: 900;
      color: var(--color-primary);
    }

    .nav-logo-sub {
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--color-text-muted);
    }

    /* Desktop links */
    .nav-links-desktop {
      display: none;
      align-items: center;
      gap: 0.25rem;
    }

    @media (min-width: 768px) {
      .nav-links-desktop {
        display: flex;
      }
    }

    .nav-link {
      border: none;
      background: transparent;
      cursor: pointer;
      padding: 0.5rem 1.5rem;
      border-radius: 999px;
      font-weight: 600;
      font-size: 0.95rem;
      color: var(--color-text-muted);
      transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
    }

    .nav-link:hover {
      background: var(--color-primary-soft);
      color: var(--color-primary);
    }

    .nav-link--active {
      background: var(--color-primary);
      color: var(--color-bg);
      box-shadow: 0 10px 25px var(--color-shadow-soft);
      transform: translateY(-1px);
    }

    /* Mobile toggle */
    .nav-toggle {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 2.5rem;
      height: 2.5rem;
      border-radius: 0.75rem;
      border: none;
      background: transparent;
      cursor: pointer;
      transition: background 0.2s ease;
    }

    .nav-toggle:hover {
      background: var(--color-gray-100);
    }

    @media (min-width: 768px) {
      .nav-toggle {
        display: none;
      }
    }

    .nav-toggle-icon {
      position: relative;
      width: 1.5rem;
      height: 1.5rem;
    }

    .nav-toggle-line {
      position: absolute;
      left: 0;
      right: 0;
      height: 2px;
      border-radius: 999px;
      background: var(--color-primary);
      transition: transform 0.25s ease, opacity 0.25s ease, top 0.25s ease, bottom 0.25s ease;
    }

    .nav-toggle-line:nth-child(1) {
      top: 4px;
    }

    .nav-toggle-line:nth-child(2) {
      top: 11px;
    }

    .nav-toggle-line:nth-child(3) {
      bottom: 4px;
    }

    .main-nav.is-open .nav-toggle-line:nth-child(1) {
      top: 11px;
      transform: rotate(45deg);
    }

    .main-nav.is-open .nav-toggle-line:nth-child(2) {
      opacity: 0;
    }

    .main-nav.is-open .nav-toggle-line:nth-child(3) {
      bottom: 11px;
      transform: rotate(-45deg);
    }

    /* Mobile dropdown */
    .nav-mobile {
      max-height: 0;
      overflow: hidden;
      border-top: 1px solid var(--color-gray-200);
      background: var(--color-bg);
      transition: max-height 0.3s ease, opacity 0.3s ease;
      opacity: 0;
    }

    .main-nav.is-open .nav-mobile {
      max-height: 320px; /* αρκετό για τα links */
      opacity: 1;
    }

    .nav-mobile-inner {
      padding: 0.75rem 1rem 1rem 1rem;
    }

    .nav-mobile-link {
      display: block;
      width: 100%;
      text-align: left;
      border: none;
      background: transparent;
      cursor: pointer;
      padding: 0.75rem 1.5rem;
      border-radius: 0.9rem;
      font-weight: 600;
      font-size: 0.95rem;
      margin-bottom: 0.5rem;
      color: var(--color-text-muted);
      transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
    }

    .nav-mobile-link:hover {
      background: var(--color-primary-soft);
      color: var(--color-primary);
    }

    .nav-mobile-link.nav-link--active {
      background: var(--color-primary);
      color: var(--color-bg);
      box-shadow: 0 10px 25px var(--color-shadow-soft);
    }

    /* Demo sections (για να δεις το scroll & active state) */
    .demo-section {
      min-height: 100vh;
      padding: 7rem 1rem 3rem;
      background: var(--color-bg);
    }

    .demo-section:nth-child(even) {
      background: var(--color-gray-100);
    }

    .demo-section-inner {
      max-width: 1120px;
      margin: 0 auto;
      padding: 2rem 1rem;
    }

    #contenttop h2.demo-section-title {
      font-size: 2rem;
      margin-bottom: 0.5rem;
      font-weight: bold;
      
    }

    .demo-section-sub {
      color: var(--color-text-muted);
    }

.c-tag {
    background-color: rgb(226 0 116 / 0.1);
    width: auto;
    display: inline-block;
    margin: 0 auto;
    padding: 12px 25px 6px;
    border-radius: 60px;
    color: var(--color-primary);
    font-size: 20px;
    font-weight: bold;
}

#qr-stands .container {
        text-align: center;
}

.c-tag span {
    margin-left: 10px;
    top: -5px;
    display: inline-block;
    position: relative;
}


.extra-service-cards {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
max-width: 1000px;
    padding: 0px 30px;
    margin: 0 auto;
    gap: 20px;
}

.extra-service-card img {
   border-radius: 30px;
}

@media (min-width: 1024px) {
        .extra-service-card {
      max-width: 100%;
      width: calc(50% - 20px);
      margin: 0 auto;
    }
}.c-newlogo {
    background-image: url('cache/files/notfound');
    background-position: center;
    background-size: contain;
background-repeat: no-repeat;
}


a.mobile-header-startlink {
    background-image: url('cache/files/notfound');
    background-position: center;
    background-size: contain;
background-repeat: no-repeat;
width: 220px;
    transform: translate(-50%, 0%);
}

.side-nav__header {
    background-color: white;
    background-image: url('cache/files/notfound') !important;
    color: #333;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: contain;
    margin-left: 8vh;
    margin-right: 8vh;
}.c-newsletter {
padding-top: 100px;
padding-bottom: 100px;
width: 60%;
margin: auto;
}

.c-newsletter form {
    margin: auto;
}

.c-newsletter form label {
    display: block;
    margin-bottom: 20px;
    text-align: center;
    font-size: 1.4em;
    font-weight: 800;
font-family: 'Manrope', sans-serif;
}

.c-newsletter form input {
    padding: 10px;
    border: 2px solid #d3d3d3;
    border-radius: 5px;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}


.c-newsletter form input:focus-visible {
outline: none;
    box-shadow: 0px 0px 10px rgb(0 0 0 / 20%);
}

.c-newsletter form input::placeholder {
color: #d1d1d5;
font-size: 14px;
}

.c-newsletter form .submit {
margin-top: 20px;
text-align: center;
}

.c-newsletter form .submit button {
    font-size: 14px;
    font-weight: 400;
    padding: 20px 25px;
    color: white;
    background-color: #595959;
    transition: 0.3s;
    letter-spacing: 1px;
    border-radius: 3px;
    border-color: transparent;
    min-width: 170px;
}

.c-newsletter form .submit button:hover {
color: white;
background-color: #e0751b;
}

@media only screen and (max-width: 768px) {
.c-newsletter {
width: 90%;
}
}