:root {
    --bg: #0a0c10;
    --bg2: #0e1116;
    --card: #13161d;
    --card2: #191c24;
    --gold: #e8a020;
    --gold2: #f5b840;
    --white: #f0f2f7;
    --muted: #7a8099;
    --border: #232733;
    --accent: #1e2230;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    background: var(--bg);
    color: var(--white);
    font-family: 'Barlow', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    overflow-x: hidden;
  }

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex; /* Ενεργοποιεί την οριζόντια διάταξη */
    align-items: center; /* Στοιχίζει τα στοιχεία κάθετα στο κέντρο */
    justify-content: space-between; /* Σπρώχνει το logo αριστερά και το nav-right δεξιά */
    padding: 0 48px;
    height: 120px;
    background: linear-gradient(to right, rgba(0,0,0,0.3) 10%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,.3) 70%, rgba(0,0,0,.3) 100%);
    transition: transform 0.3s ease-in-out; /* Ομαλή κίνηση */

    /* === ΠΡΟΣΘΕΣΕ ΑΥΤΕΣ ΤΙΣ ΓΡΑΜΜΕΣ === */
  -webkit-backdrop-filter: blur(7px); /* Για παλαιότερους browser */
  backdrop-filter: blur(7px); /* Το βασικό εφέ */
  /* ================================= */

  }

  /* Η κλάση που θα προσθέτουμε με JavaScript */
.nav-hidden {
  transform: translateY(-100%);
}


  /* Αυτό το div κρατάει το μενού και το κουμπί μαζί στα δεξιά */
  .nav-right {
    display: flex;
    align-items: center;
    gap: 40px; /* Απόσταση μεταξύ μενού και κουμπιού */
  }

  .nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .nav-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .08em;
    transition: color .2s;
  }

  .nav-links a:hover {
    color: #FFC94A;
  }

  /* Διασφάλιση ότι το nav-right στοιχίζει σωστά τα στοιχεία */
  .nav-right {
    display: flex;
    align-items: center;
    gap: 40px;
  }

  .btn-contact {
    background: #FFC94A;
    color: #000;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: .9rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 8px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    transition: background .2s;
  }
  /*.btn-contact:hover { background: var(--gold2); }*/

  /* ── HERO ── */
  #home {
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 48px 80px;
    position: relative;
    overflow: hidden;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(to right, rgba(10,12,16,0.85) 15%, rgba(10,12,16,0.3) 35%, rgba(10,12,16,.15) 50%, rgba(10,12,16,.01) 100%),
      url('images/datacenter2.webp') center center / cover no-repeat;
    z-index: 0;
  }

  /* subtle gold tint overlay */
  .hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 50% 70% at 80% 50%, rgba(232,160,32,.07) 0%, transparent 70%);
    z-index: 0;
  }

  

  @keyframes blink {
    0%, 90%, 100% { opacity: 1; }
    95% { opacity: .2; }
  }

  .rack-bar {
    height: 4px;
    background: linear-gradient(90deg, #1a4a8a, #2266cc, #1a4a8a);
    border-radius: 2px;
    flex: 1;
    opacity: .6;
  }

  .rack-bar.gold { background: linear-gradient(90deg, #5a3a00, #FFC94A, #5a3a00); }

  .hero-content { position: relative; z-index: 2; max-width: 620px; padding-top: 70px;}

  .hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #FFC94A;
    margin-bottom: 24px;
  }

  .hero-tag::before {
    content: '';
    display: inline-block;
    width: 24px; height: 2px;
    background: #FFC94A;
  }

  h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(3rem, 6vw, 5.2rem);
    line-height: .96;
    letter-spacing: -.01em;
    text-transform: uppercase;
    margin-bottom: 8px;
  }

  h1 .gold { color: #FFC94A; display: block; }

  .hero-sub {
    font-size: 1.9rem;
    font-weight: 500;
    color: #fff;
    margin: 20px 0 14px;
    letter-spacing: .02em;
  }

  .hero-desc {
    font-size: 1.4rem;
    color: #fff;
    max-width: 440px;
    margin-bottom: 36px;
  }

  .hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
  }

  .btn-primary {
    background: #FFC94A;
    color: #000;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 13px 28px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    transition: background .2s, transform .15s;
  }

  .btn-primary:hover { background: var(--gold2); transform: translateY(-1px); }

  .btn-outline {
    background: transparent;
    color: var(--white);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 1.4rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 12px 28px;
    border: 1px solid var(--border);
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    transition: border-color .2s, color .2s;
  }

  .btn-outline:hover { border-color: #FFC94A; color: #FFC94A; }

  .hero-stats {
    display: flex;
    gap: 48px;
    margin-top: 64px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
    position: relative;
    z-index: 2;
  }

  .stat-item { text-align: left; }

  .stat-icon {
    width: 42px; height: 42px;
    border: 1px solid var(--border);
    border-radius: 8px;
    display: grid;
    place-items: center;
    margin-bottom: 10px;
    font-size: 1.1rem;
  }

  .stat-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    /*color: var(--muted);*/
    line-height: 1.3;
  }

  /* ── SECTION COMMONS ── */
  section {
    padding: 190px 48px;
    position: relative;
  }

  .section-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: #FFC94A;
    margin-bottom: 14px;
  }

  .section-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(2rem, 4vw, 3.2rem);
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 10px;
  }

  .section-sub {
    /*color: var(--muted);*/
    font-size: 1.4rem;
    max-width: 480px;
    margin-bottom: 56px;
  }

  /* ── SOLUTIONS ── */
  #solutions { background: var(--bg2); }

  .solutions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
  }

  .sol-card {
    background: var(--card);
    padding: 36px 32px;
    border: 1px solid var(--border);
    transition: border-color .25s, background .25s;
    cursor: default;
    position: relative;
    overflow: hidden;
  }

  .sol-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 2px;
    background: #FFC94A;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s;
  }

  .sol-card:hover { background: var(--card2); border-color: #2d3245; }
  .sol-card:hover::before { transform: scaleX(1); }

  .sol-icon {
    width: 48px; height: 48px;
    border: 1px solid var(--border);
    border-radius: 10px;
    display: grid;
    place-items: center;
    font-size: 1.4rem;
    margin-bottom: 18px;
    background: var(--accent);
  }

  .sol-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.7rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 8px;
  }

  .sol-desc {
    font-size: 1.4rem;
    /*color: var(--muted);*/
    line-height: 1.55;
  }

  /* ── TECHNOLOGIES ── */
  #technologies { background: var(--bg); }

  .tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 40px;
  }

  .tech-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 28px 24px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    transition: border-color .25s, transform .2s;
  }

  .tech-card:hover { border-color: rgba(232,160,32,.3); transform: translateY(-2px); }

  .tech-logo {
    width: 44px; height: 44px;
    border-radius: 8px;
    background: var(--accent);
    display: grid;
    place-items: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    border: 1px solid var(--border);
  }

  .tech-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.7rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 4px;
  }

  .tech-sub {
    font-size: 1.4rem;
    /*color: var(--muted);*/
    line-height: 1.45;
  }

  .tech-cta {
    text-align: center;
    margin-top: 16px;
  }

  /* -- FEATURES -- */
 .feature-bar-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1400px; /* Πολύ πλατύ για να καλύπτει την οθόνη */
  margin: 60px auto;
  padding: 0 40px;
  flex-wrap: wrap;
  gap: 40px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  min-width: 280px; /* Μεγαλύτερο ελάχιστο πλάτος */
  transition: transform 0.3s ease;
}

.feature-icon-wrapper {
  width: 90px;  /* Πιο μεγάλο εικονίδιο */
  height: 90px;
  border: 2px solid #FFC94A; /* Πιο παχύ περίγραμμα */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  position: relative;
  background: rgba(232, 160, 32, 0.02);
  box-shadow: 0 0 20px rgba(232, 160, 32, 0.1); /* Απαλό εξωτερικό glow */
}

/* Το εσωτερικό δαχτυλίδι για πιο "τεχνικό" look */
.feature-icon-wrapper::after {
  content: '';
  position: absolute;
  inset: -7px;
  border: 1px solid rgba(232, 160, 32, 0.15);
  border-radius: 50%;
}

.feature-icon-wrapper i {
  color: #FFC94A;
  font-size: 2rem; /* Μεγαλύτερο σύμβολο */
}

.feature-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.feature-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.4rem; /* Μεγαλύτερος τίτλος */
  letter-spacing: 0.1em;
  color: var(--white);
  text-transform: uppercase;
}

.feature-sub {
  font-family: 'Barlow', sans-serif;
  font-size: 0.95rem; /* Μεγαλύτερο επεξηγηματικό κείμενο */
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Hover εφέ */
.feature-item:hover {
  transform: translateY(-10px);
}

.feature-item:hover .feature-icon-wrapper {
  background: rgba(232, 160, 32, 0.1);
  box-shadow: 0 0 30px rgba(232, 160, 32, 0.2);
}

/* Responsive για tablet/mobile */
@media (max-width: 1024px) {
  .feature-item {
    flex: none;
    width: 45%;
  }
}

@media (max-width: 600px) {
  .feature-item {
    width: 100%;
  }
}

/* Mobile Διορθώσεις */
@media (max-width: 900px) {
  .feature-bar-container {
    justify-content: center;
    gap: 40px;
  }
  .feature-item {
    flex: none;
    width: 45%; /* Δύο στήλες στα tablet */
  }
}

@media (max-width: 500px) {
  .feature-item {
    width: 100%; /* Μία στήλη στα κινητά */
  }
}

  /* ── PRICING ── */
  #pricing { background: var(--bg2); }

  .pricing-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
  }

  .price-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 40px 36px;
  }

  .price-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    /*color: var(--muted);*/
    margin-bottom: 12px;
  }

  .price-from {
    font-size: 1rem;
    /*color: var(--muted);*/
    margin-bottom: 4px;
  }

  .price-amount {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 3.6rem;
    color: #FFC94A;
    line-height: 1;
    letter-spacing: -.02em;
  }

  .price-unit {
    font-size: .9rem;
    /*color: var(--muted);*/
    margin-bottom: 28px;
    margin-top: 4px;
  }

  .price-features {
    list-style: none;
    margin-bottom: 32px;
  }

  .price-features li {
    font-size: 1.4rem;
    /*color: var(--muted);*/
    padding: 7px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .price-features li:last-child { border-bottom: none; }

  .price-features li::before {
    content: '→';
    color: #FFC94A;
    font-size: .9rem;
    flex-shrink: 0;
  }

  .enterprise-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 40px 36px;
    text-align: center;
  }

  .enterprise-card h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 12px;
  }

  .enterprise-card p {
    font-size: 1.3rem;
    /*color: var(--muted);*/
    margin-bottom: 28px;
  }


 /* 1. Το Container που πιάνει όλο το πλάτος */
.enterprise-section {
  width: 100%;
  display: block;      /* Αλλάζουμε σε block για σιγουριά */
  clear: both;         /* Καθαρίζει τυχόν floats από προηγούμενα στοιχεία */
  padding: 60px 0;
  text-align: center;  /* Βοηθάει στο κεντράρισμα των inline-block στοιχείων */
}

/* 2. Η Κάρτα */
.enterprise-section .enterprise-card {
  display: inline-block; /* Επιτρέπει στο text-align: center να δουλέψει */
  max-width: 600px;
  width: 90%;            /* Για να έχει περιθώρια στα κινητά */
  margin: 0 auto;        /* Η κλασική μέθοδος κεντραρίσματος */
  
  /* Τα στυλ σου */
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 40px 36px;
  text-align: center;    /* Κεντράρει το κείμενο ΜΕΣΑ στην κάρτα */
  
  /* Διασφάλιση ότι δεν υπάρχει float */
  float: none;
}

  /* ── ABOUT ── */
  #about { background: var(--bg); }

  .about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
  }

  .about-visual {
    position: relative;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border);
  }

  .about-visual-inner {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, #0e1116 0%, #141820 50%, #1a1e28 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }

  .about-visual-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Γεμίζει το χώρο χωρίς να παραμορφώνει */
    object-position: center; /* Κεντράρει την εικόνα κατά το crop */
    display: block; /* Αφαιρεί το default inline κενό που έχουν οι εικόνες */
}

  .building-svg {
    position: absolute;
    bottom: 0;
    width: 100%;
    opacity: .6;
  }

  .helio-wordmark {
    position: relative;
    z-index: 2;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 3.5rem;
    letter-spacing: .1em;
    color: rgba(240,242,247,.12);
    text-transform: uppercase;
  }

  .about-text p {
    font-size: 1.4rem;
    /*color: var(--muted);*/
    margin-bottom: 16px;
    line-height: 1.7;
  }

  .about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
  }

  .about-stat-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 2.2rem;
    color: #FFC94A;
    line-height: 1;
  }

  .about-stat-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: .9rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    /*color: var(--muted);*/
    margin-top: 4px;
  }

  
  /* ── ANIMATIONS ── */
  .fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease;
  }
  .fade-up.visible { opacity: 1; transform: translateY(0); }

  /* Stagger delays */
  .d1 { transition-delay: .1s; }
  .d2 { transition-delay: .2s; }
  .d3 { transition-delay: .3s; }
  .d4 { transition-delay: .4s; }


  /* -- TECHNOLOGIES -- */
  .tech-grid-new {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 στήλες όπως στη φωτό */
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto 50px;
}

.tech-card-new {
  background: #0e1218; /* Ελαφρώς πιο ανοιχτό από το καθαρό μαύρο */
  border: 1px solid #1a1e26;
  border-radius: 16px; /* Πιο στρογγυλεμένες γωνίες */
  padding: 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.tech-card-new:hover {
  transform: translateY(-5px);
  border-color: #FFC94A;
}

.tech-logo-container {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tech-logo-container img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.tech-icon-placeholder {
  font-size: 2.5rem;
  color: #FFC94A;
}

.tech-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.tech-name-new {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.7rem;
  letter-spacing: 0.05em;
  color: var(--white);
  text-transform: uppercase;
}

.tech-desc-new {
  font-size: 1.4rem;
  /*color: var(--muted);*/
  line-height: 1.4;
}

.tech-cta-wrapper {
  text-align: center;
  margin-top: 40px;
}

/* Το κουμπί View Documentation */
.btn-primary-tech {
  background: #FFC94A;
  color: #000;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  padding: 14px 40px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  letter-spacing: 0.05em;
  transition: background 0.3s ease;
}

.btn-primary-tech:hover {
  background: var(--gold2);
}

/* Responsive για κινητά */
@media (max-width: 850px) {
  .tech-grid-new {
    grid-template-columns: 1fr; /* 1 στήλη στα κινητά */
  }
}

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    nav { padding: 0 24px; }
    .nav-links { display: none; }
    section { padding: 72px 24px; }
    #home { padding: 100px 24px 60px; }
  
    .solutions-grid { grid-template-columns: 1fr; }
    .tech-grid { grid-template-columns: 1fr 1fr; }
    .pricing-wrapper { grid-template-columns: 1fr; }
    .about-wrapper { grid-template-columns: 1fr; }
    .about-stats { grid-template-columns: repeat(2, 1fr); }
    .hero-stats { gap: 28px; flex-wrap: wrap; }
    footer { flex-direction: column; gap: 16px; text-align: center; }
  }

  @media (max-width: 560px) {
    .tech-grid { grid-template-columns: 1fr; }
    .about-stats { grid-template-columns: repeat(2, 1fr); }
  }


 /* ===== FOOTER REDESIGN ===== */
footer {
  background: #000;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 0;
  margin-top: 0;
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  justify-content: flex-start !important;
}
 
.footer-main {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
  padding: 64px 60px 48px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  align-items: start;
}
 
/* Brand column */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
 
.footer-logo {
  
  max-width: 200px;
  display: block;

}
 
.footer-tagline {
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.7;
  color: #fff;
  max-width: 280px;
  margin: 0;
}
 
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 4px;
}
 
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  text-decoration: none;
  transition: border-color 0.25s, color 0.25s, background 0.25s;
}
 
.footer-social a:hover {
  border-color: #FFC94A;
  color: #FFC94A;
  background: rgba(201,168,76,0.08);
}
 
/* Link columns */
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
 
.footer-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #FFC94A;
  margin: 0 0 4px 0;
}
 
.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
 
.footer-col ul li a {
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
  display: inline-block;
}
 
.footer-col ul li a:hover {
  color: #fff;
}
 
/* Bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
  padding: 20px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
 
.footer-copy {
  font-family: 'Barlow', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
}
 
.footer-legal {
  display: flex;
  gap: 24px;
}
 
.footer-legal a {
  font-family: 'Barlow', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.2s;
}
 
.footer-legal a:hover {
  color: rgba(255,255,255,0.65);
}
 
/* Responsive */
@media (max-width: 1024px) {
  .footer-main {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
  }
  .footer-brand {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 32px;
  }
  .footer-tagline { max-width: 360px; }
}
 
@media (max-width: 640px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
    padding: 48px 24px 32px;
    gap: 32px;
  }
  .footer-brand {
    grid-column: 1 / -1;
    flex-direction: column;
    gap: 16px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px;
    gap: 12px;
  }
  .footer-legal { flex-wrap: wrap; gap: 16px; }
}



/* =====================
   PAGE LAYOUT
===================== */
.contact-page {
  background: #0d0d0f;
  min-height: 100vh;
  padding-top: 0;
}

/* =====================
   HERO
===================== */
.contact-hero {
  position: relative;
  padding: 160px 60px 80px;
  text-align: center;
  overflow: hidden;
}

.contact-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, rgba(201,168,76,0.10) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 50%, rgba(201,168,76,0.04) 0%, transparent 60%);
  pointer-events: none;
}

.contact-hero-tag {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #FFC94A;
  border: 1px solid rgba(201,168,76,0.35);
  border-radius: 2px;
  padding: 5px 14px;
  margin-bottom: 28px;
}

.contact-hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.05;
  color: #fff;
  margin: 0 0 20px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.contact-hero h1 span.gold {
  color: #FFC94A;
}

.contact-hero-sub {
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  font-size: 1.05rem;
  color: #fff;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* =====================
   RESOURCE CARDS
===================== */
.resources-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px 80px;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.resource-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-decoration: none;
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
  position: relative;
  overflow: hidden;
}

.resource-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.5), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.resource-card:hover {
  border-color: rgba(201,168,76,0.3);
  background: rgba(201,168,76,0.04);
  transform: translateY(-3px);
}

.resource-card:hover::before {
  opacity: 1;
}

.resource-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFC94A;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.resource-card-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  color: #fff;
  text-transform: uppercase;
}

.resource-card-desc {
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  font-size: 1rem;
  color: #fff;
  line-height: 1.65;
  flex: 1;
}

.resource-card-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #FFC94A;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}

.resource-card-link i {
  font-size: 1rem;
  transition: transform 0.2s;
}

.resource-card:hover .resource-card-link i {
  transform: translateX(4px);
}

/* =====================
   DIVIDER
===================== */
.section-divider {
  max-width: 1200px;
  margin: 0 auto 64px;
  padding: 0 60px;
  border: none;
  border-top: 1px solid rgba(255,255,255,0.07);
}

/* =====================
   CONTACT SECTION
===================== */
.contact-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px 100px;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}

/* Left: info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: sticky;
  top: 100px;
}

.contact-info-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #FFC94A;
  margin-bottom: 12px;
}

.contact-info h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 3vw, 2.8rem);
  text-transform: uppercase;
  line-height: 1.05;
  color: #fff;
  margin: 0 0 16px;
  letter-spacing: 0.02em;
}

.contact-info p {
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  font-size: 1rem;
  color: #fff;
  line-height: 1.75;
  margin: 0;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFC94A;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-detail-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.contact-detail-text strong {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #FFC94A;
}

.contact-detail-text span {
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
}

/* =====================
   FORM
===================== */
.contact-form-wrapper {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  padding: 48px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-group:last-child {
  margin-bottom: 0;
}

.form-group label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 3px;
  padding: 13px 16px;
  font-family: 'Barlow', sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  color: #fff;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.35)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-group select option {
  background: #1a1a1f;
  color: #fff;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.4);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(201,168,76,0.5);
  background: rgba(201,168,76,0.04);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.form-submit {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.form-note {
  font-family: 'Barlow', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}

.btn-primary-contact {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #FFC94A;
  color: #0a0a0a;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 32px;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}

.btn-primary-contact:hover {
  background: #d9b85c;
  transform: translateY(-1px);
}

.btn-primary-contact i {
  font-size: 0.8rem;
}



/* =====================
   HAMBURGER / MOBILE NAV
===================== */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 200;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

/* X state when open */
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  top: 0;
  background: rgba(10, 12, 16, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 150;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.mobile-nav.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.mobile-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-nav ul li a {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  padding: 14px 32px;
  transition: color 0.2s;
}

.mobile-nav ul li a:hover { color: #FFC94A; }

.mobile-nav .btn-contact-mobile {
  margin-top: 32px;
  background: #FFC94A;
  color: #000;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 40px;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s;
}

/* =====================
   ANIMATIONS
===================== */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 1024px) {
  .contact-section { grid-template-columns: 1fr; gap: 48px; }
  .contact-info { position: static; }
  .resources-grid { grid-template-columns: 1fr 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; flex-direction: row; flex-wrap: wrap; gap: 32px; }
}

@media (max-width: 768px) {
  /* Nav */
  nav {
    padding: 0 20px;
    height: 90px;
  }

  .nav-logo img { height: 60px; margin-left: 4px; padding: 10px 0 10px 0;}

  @media (max-width: 768px) {
    #solutions {margin-top:50px}
    #technologies {margin-top:50px}
    #pricing {margin-top:50px}
    #about {margin-top:50px}

    }

  .hamburger { display: flex; margin-left: auto; margin-right: 0; }

  .nav-right .nav-links,
  .nav-right .btn-contact { display: none; }

  .mobile-nav { display: flex; }

  /* Hero */
  .contact-hero { padding: 130px 24px 60px; }
  .contact-section { padding: 0 24px 80px; }
  .resources-section { padding: 0 24px 60px; }
  .section-divider { padding: 0 24px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrapper { padding: 28px 20px; }
  .form-submit { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
  .resources-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; padding: 48px 24px 32px; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; flex-direction: column; gap: 16px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; padding: 20px 24px; gap: 12px; }
  .footer-legal { flex-wrap: wrap; gap: 16px; }
}


.mobile-nav-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 4px;
}

.mobile-nav-close span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
}

.mobile-nav-close span:nth-child(1) { transform: translateY(1px) rotate(45deg); }
.mobile-nav-close span:nth-child(2) { transform: translateY(-1px) rotate(-45deg); }