.hero {
    position: relative;
    min-height: 850px;
    padding: 150px 70px 60px;
    overflow: hidden;
    color: #ffffff;

    background-image:
        linear-gradient(
            90deg,
            rgba(3, 20, 38, 0.96) 0%,
            rgba(3, 20, 38, 0.86) 32%,
            rgba(3, 20, 38, 0.42) 58%,
            rgba(3, 20, 38, 0.06) 100%
        ),
        url("assets/ovociebanner.png");

    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
}

.hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 230px;
    pointer-events: none;

    background: linear-gradient(
        180deg,
        rgba(3, 20, 38, 0) 0%,
        rgba(3, 20, 38, 0.92) 72%,
        #031426 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin-left: 40px;
}

.hero h1 {
    margin-bottom: 26px;
    max-width: 760px;

    font-size: clamp(46px, 5vw, 82px);
    line-height: 1.03;
    font-weight: 800;
    letter-spacing: -0.055em;
}

.hero-description {
    max-width: 620px;
    margin-bottom: 38px;

    color: rgba(255, 255, 255, 0.78);
    font-size: 22px;
    line-height: 1.65;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 18px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 52px;
    padding: 0 30px;

    border-radius: 5px;
    text-decoration: none;

    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;

    transition: 0.25s ease;
}

.btn-primary {
    color: #ffffff;
    background: linear-gradient(180deg, #95ddff 0%, #63baf0 100%);
    box-shadow: 0 0 28px rgba(110, 196, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 42px rgba(110, 196, 255, 0.5);
}

.btn-secondary {
    color: #c8edff;
    border: 1px solid rgba(145, 216, 255, 0.34);
    background: rgba(5, 22, 40, 0.45);
}

.btn-secondary:hover {
    border-color: rgba(145, 216, 255, 0.75);
    background: rgba(145, 216, 255, 0.08);
}

.hero-stats {
    position: absolute;
    z-index: 3;
    left: 70px;
    right: 70px;
    bottom: 45px;

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    border-top: 1px solid rgba(143, 220, 255, 0.16);
}

.stat-item {
    padding: 28px 30px;
    border-right: 1px solid rgba(143, 220, 255, 0.16);
}

.stat-item:last-child {
    border-right: none;
}

.stat-item p {
    margin-bottom: 8px;

    color: #82d9ff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.stat-item strong {
    display: block;
    margin-bottom: 8px;

    color: #ffffff;
    font-size: 26px;
    line-height: 1.15;
    font-weight: 700;
}

.stat-item span {
    display: block;

    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
    line-height: 1.45;
}

@media (max-width: 1100px) {
    .hero {
        padding: 120px 32px 330px;
        background-position: 68% center;
    }

    .hero-content {
        margin-left: 0;
    }

    .hero-stats {
        left: 32px;
        right: 32px;
        bottom: 35px;
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item:nth-child(2) {
        border-right: none;
    }
}

@media (max-width: 700px) {
    .hero {
        min-height: auto;
        padding: 95px 22px 520px;
        background-position: 72% center;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero-description {
        font-size: 18px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-stats {
        left: 22px;
        right: 22px;
        grid-template-columns: 1fr;
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(143, 220, 255, 0.14);
    }

    .stat-item:last-child {
        border-bottom: none;
    }
}

/* SEKCIA 2 */ 
/* SEKCIA 2 */ 
/* SEKCIA 2 */ 
/* SEKCIA 2 */ 
/* SEKCIA 2 */ 
/* SEKCIA 2 */ 
/* SEKCIA 2 */ 

.solution-section {
    padding: 110px 70px;
    background:
        radial-gradient(circle at 85% 20%, rgba(120, 210, 255, 0.10), transparent 34%),
        linear-gradient(180deg, #f7fbff 0%, #eef6fb 100%);
    color: #071a2e;
}

.solution-container {
    max-width: 1500px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: start;
}

.section-label {
    display: inline-block;
    margin-bottom: 18px;

    color: #58aee8;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.solution-left h2 {
    max-width: 620px;
    margin-bottom: 26px;

    font-size: clamp(38px, 4vw, 64px);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.solution-left > p {
    max-width: 620px;

    color: rgba(7, 26, 46, 0.72);
    font-size: 19px;
    line-height: 1.7;
}

.advantage-box {
    margin-top: 42px;
    padding: 34px;

    border: 1px solid rgba(11, 79, 138, 0.12);
    border-radius: 18px;

    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 24px 70px rgba(7, 26, 46, 0.07);
}

.advantage-box span {
    display: block;
    margin-bottom: 12px;

    color: #0b76bd;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.advantage-box strong {
    display: block;
    margin-bottom: 14px;

    color: #071a2e;
    font-size: 26px;
    line-height: 1.2;
}

.advantage-box p {
    color: rgba(7, 26, 46, 0.68);
    font-size: 16px;
    line-height: 1.65;
}

.solution-right {
    display: flex;
    flex-direction: column;
    gap: 34px;
}

.process-line {
    padding: 36px;

    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 20px;
    align-items: center;

    border: 1px solid rgba(11, 79, 138, 0.12);
    border-radius: 22px;

    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 24px 70px rgba(7, 26, 46, 0.07);
}

.process-item {
    text-align: center;
}

.process-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #2f9ee8;
    font-size: 30px;

    border: 1px solid rgba(47, 158, 232, 0.32);
    border-radius: 50%;

    background: linear-gradient(180deg, #ffffff 0%, #edf8ff 100%);
}

.process-item strong {
    display: block;
    margin-bottom: 8px;

    color: #071a2e;
    font-size: 17px;
}

.process-item span {
    color: rgba(7, 26, 46, 0.62);
    font-size: 14px;
    line-height: 1.45;
}

.process-arrow {
    color: #58aee8;
    font-size: 30px;
    font-weight: 300;
}

.growth-box {
    padding: 42px;

    border-radius: 24px;
    background: linear-gradient(135deg, #071a2e 0%, #0b2746 100%);
    color: #ffffff;

    box-shadow: 0 28px 90px rgba(7, 26, 46, 0.18);
}

.growth-box h3 {
    max-width: 680px;
    margin-bottom: 30px;

    font-size: clamp(30px, 3vw, 46px);
    line-height: 1.1;
    letter-spacing: -0.035em;
}

.phase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.phase-card {
    padding: 28px;

    border: 1px solid rgba(143, 220, 255, 0.16);
    border-radius: 18px;

    background: rgba(255, 255, 255, 0.045);
}

.phase-card span {
    display: block;
    margin-bottom: 12px;

    color: #7fd8ff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.phase-card h4 {
    margin-bottom: 12px;

    color: #ffffff;
    font-size: 23px;
}

.phase-card p {
    color: rgba(255, 255, 255, 0.68);
    font-size: 15px;
    line-height: 1.65;
}

@media (max-width: 1100px) {
    .solution-section {
        padding: 80px 32px;
    }

    .solution-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 700px) {
    .process-line {
        grid-template-columns: 1fr;
    }

    .process-arrow {
        transform: rotate(90deg);
        text-align: center;
    }

    .phase-grid {
        grid-template-columns: 1fr;
    }

    .solution-section {
        padding: 70px 22px;
    }
}
/* SEKCIA 3 */ 
/* SEKCIA 3 */ 
/* SEKCIA 3 */ 
/* SEKCIA 3 */ 
/* SEKCIA 3 */ 
/* SEKCIA 3 */ 
.pillars-section {
  background: #020b14;
  padding: 70px 40px;
  color: #fff;
  font-family: Arial, sans-serif;
}

.pillars-title {
  max-width: 1400px;
  margin: 0 auto 20px;
  color: #2fa7ff;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.pillars-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pillar-card {
  position: relative;
  min-height: 430px;
  padding: 34px 28px;
  border: 1px solid rgba(47, 167, 255, 0.35);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(2, 11, 20, 0.95), rgba(5, 22, 38, 0.85));
  overflow: hidden;
  box-shadow: 0 0 30px rgba(0, 120, 255, 0.12);
}

.pillar-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 45%, rgba(47, 167, 255, 0.16), transparent 45%);
  pointer-events: none;
}

.pillar-icon {
  width: 58px;
  height: 58px;
  border: 1px solid rgba(47, 167, 255, 0.6);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 26px;
  color: #3bb0ff;
  margin-bottom: 28px;
  position: relative;
  z-index: 2;
}

.pillar-content {
  position: relative;
  z-index: 3;
  max-width: 55%;
}

.pillar-content span {
  color: #2fa7ff;
  font-weight: 700;
  font-size: 14px;
}

.pillar-content h3 {
  font-size: 30px;
  line-height: 1.08;
  margin: 8px 0 4px;
}

.subtitle {
  color: #b8c7d8;
  font-weight: 700;
  margin-bottom: 24px;
}

.pillar-content p {
  color: #d5deea;
  font-size: 15px;
  line-height: 1.55;
}

.pillar-img {
  position: absolute;
  right: -10px;
  bottom: 0;
  width: 58%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.9;
  z-index: 1;
  mask-image: linear-gradient(to right, transparent 0%, black 35%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 35%);
}

@media (max-width: 1100px) {
  .pillars-grid {
    grid-template-columns: 1fr;
  }

  .pillar-card {
    min-height: 420px;
  }
}

@media (max-width: 600px) {
  .pillars-section {
    padding: 50px 18px;
  }

  .pillar-content {
    max-width: 70%;
  }

  .pillar-content h3 {
    font-size: 24px;
  }

  .pillar-img {
    width: 75%;
    opacity: 0.55;
  }
}