/* Ludus Link – One pager (Hero + Nav) */

:root{
  --ll-font: "Nunito Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;

  --ll-text: #111;
  --ll-muted: #5b6670;

  --ll-line: rgba(207, 207, 207, 0.5);

  --ll-cta-start: #3FB0C9;
  --ll-cta-mid: #039ABA;
  --ll-cta-end: #027C84;

  --ll-container: 1200px;
  --ll-pad: 24px;
}

html { scroll-behavior: smooth; }

body.ll-body{
  margin: 0;
  font-family: var(--ll-font);
  color: var(--ll-text);
  background: #fff;
}

/* Container */
.ll-container{
  max-width: var(--ll-container);
  margin: 0 auto;
  padding: 0 var(--ll-pad);
}

/* Page */
.ll-page{
  position: relative;
  min-height: 100vh;
}

/* Vertical lines (aligned with container content edge) */
.ll-vline{
  display: none;
}

.ll-vline--left{
  left: max(8px, calc((100vw - var(--ll-container)) / 2 - 80px));
}

.ll-vline--right{
  right: max(8px, calc((100vw - var(--ll-container)) / 2 - 80px));
}

/* Header */
.ll-header{
  position: relative;
  z-index: 2;
  padding: 20px 0 0;
}
.ll-header::before,
.ll-header::after{
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--ll-line);
  z-index: 1;
  pointer-events: none;
}
.ll-header::before{
  left: max(8px, calc((100vw - var(--ll-container)) / 2 - 80px));
}
.ll-header::after{
  right: max(8px, calc((100vw - var(--ll-container)) / 2 - 80px));
}

.ll-header__inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 100px;
}

/* Horizontal line */
.ll-header-line{
  position: absolute;
  top: 100px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--ll-line);
}

/* Make header sit nicely between the vertical lines on big screens */
@media (min-width: 1200px){
  .ll-header__inner{
    padding-left: 10px;
    padding-right: 10px;
  }
}

/* Logo */
.ll-logo{
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--ll-text);
}

/* WP custom logo wrappers (remove default spacing) */
.custom-logo-link{
  display: inline-flex;
  align-items: center;
  margin: 0;
  padding: 0;
}

.custom-logo{
  display: block;
  height: 44px;
  width: auto;
}

/* Fallback text logo */
.ll-logo__text{
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* Navigation */
.ll-nav__list{
  list-style: none;
  display: flex;
  align-items: center;
  gap: 40px;
  margin: 0;
  padding: 0;
}

.ll-nav__list a{
  text-decoration: none;
  color: var(--ll-text);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ll-nav__list a:hover{
  opacity: .85;
}

.ll-nav__list a.ll-btn{
  color: #fff;
}

/* Burger (hidden on desktop) */
.ll-burger{
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: var(--ll-text);
}
.ll-burger__line{
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform .25s ease, opacity .25s ease;
}
.ll-burger[aria-expanded="true"] .ll-burger__line:nth-child(1){
  transform: translateY(8px) rotate(45deg);
}
.ll-burger[aria-expanded="true"] .ll-burger__line:nth-child(2){
  opacity: 0;
}
.ll-burger[aria-expanded="true"] .ll-burger__line:nth-child(3){
  transform: translateY(-8px) rotate(-45deg);
}

/* Buttons */
.ll-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  font-weight: 400;
  font-family: var(--ll-font);
  color: #fff;
  border-radius: 4px;
  padding: 12px 20px;

  background: linear-gradient(
    135deg,
    var(--ll-cta-start) 0%,
    var(--ll-cta-mid) 50%,
    var(--ll-cta-end) 100%
  );

  box-shadow: 0 3px 10px rgba(0,0,0,0.12);
  transition: transform .15s ease, opacity .2s ease;
}

.ll-btn:hover{
  opacity: .96;
  transform: translateY(-1px);
}

.ll-btn:visited,
.ll-btn:active,
.ll-btn:focus{
  color: #fff;
}

.ll-btn--nav{
  padding: 12px 22px;
}

/* Hero */
.ll-hero{
  position: relative;
  z-index: 1;
  padding: 70px 0 80px;
}
.ll-hero::before,
.ll-hero::after{
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--ll-line);
  z-index: 1;
  pointer-events: none;
}
.ll-hero::before{
  left: max(8px, calc((100vw - var(--ll-container)) / 2 - 80px));
}
.ll-hero::after{
  right: max(8px, calc((100vw - var(--ll-container)) / 2 - 80px));
}

.ll-hero__inner{
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 48px;
}

@media (min-width: 981px){
  .ll-hero__inner{
    padding-top: 120px;
    padding-bottom: 120px;
  }
  .ll-usluge__head{
    padding: 120px 0 90px;
  }
  .ll-usluge__card-first-inner{
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .ll-usluge__card-half{
    padding: 80px 40px;
  }
}

/* Left column clamp (prevents heading going over the left vertical line) */
.ll-hero__content{
  max-width: 640px;
}

.ll-hero__title{
  margin: 0 0 18px;
  font-weight: 700;
  font-size: clamp(38px, 4.2vw, 56px);
  line-height: 1.35;
  color: #000;
  max-width: 640px;
  overflow-wrap: anywhere;
}

/* Subtext */
.ll-hero__subtext{
  margin: 0 0 26px;
  max-width: 560px;
  font-weight: 400;
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.7;
  color: var(--ll-muted);
}

.ll-btn--cta{
  padding: 14px 22px;
}

/* Word decorations */
.ll-word{
  position: relative;
  display: inline-block;
}

.ll-decoration{
  position: absolute;
  pointer-events: none;
  display: block;
}

.ll-decoration--line{
  left: 0;
  bottom: 10px;
  width: 100%;
  height: auto;
  min-width: 140px;
  max-width: 320px;
}

.ll-decoration--circle{
  left: 55%;
  top: 53%;
  transform: translate(-50%, -50%);
  width: 130%;
  height: auto;
  min-width: 100px;
  max-width: 140px;
  z-index: -1;
}

/* Hero visual */
.ll-hero__visual{
  text-align: center;
}

.ll-hero__image{
  width: 100%;
  max-width: 520px;
  max-height: min(65vh, 420px);
  height: auto;
  display: block;
  margin: 0 auto;
  object-fit: contain;
}

.ll-hero__image-placeholder{
  width: 100%;
  max-width: 520px;
  max-height: min(65vh, 420px);
  aspect-ratio: 4/3;
  margin: 0 auto;
  background: #f2f3f5;
  border-radius: 10px;
}

/* Caption */
.ll-hero__caption{
  margin: 18px 0 0;
  font-weight: 900;
  font-size: 26px;
  color: #6b7782;
}

/* About Us section */
.ll-about{
  position: relative;
  padding: 90px 0;
  overflow: hidden;
}
.ll-about__bg{
  position: absolute;
  inset: 0;
  z-index: 0;
}
.ll-about__line{
  position: absolute;
  background: rgba(255, 255, 255, 0.5);
  z-index: 1;
  pointer-events: none;
}
.ll-about__line--left{
  top: 0;
  bottom: 0;
  left: max(8px, calc((100vw - var(--ll-container)) / 2 - 80px));
  width: 1px;
}
.ll-about__line--right{
  top: 0;
  bottom: 0;
  right: max(8px, calc((100vw - var(--ll-container)) / 2 - 80px));
  width: 1px;
}
.ll-about__line--top{
  left: 0;
  right: 0;
  top: 40px;
  height: 1px;
}
.ll-about__line--bottom{
  left: 0;
  right: 0;
  bottom: 40px;
  height: 1px;
}
.ll-about__inner{
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
}
.ll-about__visual{
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  max-height: min(calc(100vh - 80px), 560px);
}
.ll-about__connects{
  max-width: min(100%, 520px);
  max-height: 100%;
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
}
.ll-about__content{
  max-width: 540px;
}
.ll-about__title{
  margin: 30px 0 4px;
  font-family: var(--ll-font);
  font-weight: 900;
  font-size: 52px;
  line-height: 1.25;
  color: #fff;
  text-transform: uppercase;
}
.ll-about__title-accent{
  color: #000;
}
.ll-about__text{
  margin: 0 0 8px;
  font-family: var(--ll-font);
  font-weight: 400;
  font-size: clamp(15px, 2vw, 16px);
  line-height: 1.7;
  color: #fff;
}
.ll-about__logo-inline{
  display: inline-block;
  vertical-align: middle;
  height: 0.85em;
  width: auto;
  margin: 0 2px;
}
.ll-btn--about{
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 2px;
  box-shadow: none;
}
.ll-btn--about:hover{
  background: rgba(255,255,255,0.1);
}

/* =========================================
   Usluge section – 3-row grid layout
   ========================================= */
.ll-usluge{
  position: relative;
}

.ll-usluge__section{
  position: relative;
}

/* --- Row 1: Title --- */
.ll-usluge__head{
  padding: 70px 0 48px;
  text-align: center;
}
.ll-usluge__section--intro .ll-usluge__head{
  border-bottom: none;
}

/* --- Section 2 frame: top, bottom, left and right lines --- */
.ll-usluge__section--konf{
  border-top: 1px solid var(--ll-line);
  border-bottom: 1px solid var(--ll-line);
}
.ll-usluge__section--konf::before,
.ll-usluge__section--konf::after{
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--ll-line);
}
.ll-usluge__section--konf::before{
  left: max(8px, calc((100vw - var(--ll-container)) / 2 - 80px));
}
.ll-usluge__section--konf::after{
  right: max(8px, calc((100vw - var(--ll-container)) / 2 - 80px));
}

.ll-usluge__main-title{
  margin: 0;
  font-family: var(--ll-font);
  font-weight: 900;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.2;
  color: var(--ll-text);
  text-transform: uppercase;
}

/* --- Row 2: First card (full-width, framed by side lines) --- */
.ll-usluge__card-first{
  position: relative;
}
.ll-usluge__card-first-inner{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 380px));
  align-items: center;
  gap: 48px;
  justify-content: center;
  max-width: 840px;
  margin: 0 auto;
  padding-top: 48px;
  padding-bottom: 48px;
}
.ll-usluge__section--konf .ll-usluge__img-wrap{
  justify-content: center;
}

/* --- Row 3: Two cards side by side --- */
.ll-usluge__row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  border-bottom: 1px solid var(--ll-line);
}
.ll-usluge__card-half{
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.ll-usluge__card-half:first-child{
  border-right: 1px solid var(--ll-line);
}

.ll-usluge__card-shell{
  background: #fff;
  height: 100%;
  display: flex;
}
.ll-usluge__card-inner{
  width: 100%;
}
.ll-usluge__card-inner--sajam{
  width: min(100%, 360px);
  margin: 0 0 0 auto;
  padding: 16px 22px 22px;
  display: flex;
  flex-direction: column;
}
.ll-usluge__card-inner--sajam .ll-usluge__title{
  margin-bottom: 12px;
}
.ll-usluge__card-inner--sajam .ll-usluge__text{
  margin-bottom: 18px;
}

.ll-usluge__card-shell-team{
  background: #fff;
  height: 100%;
  display: flex;
}
.ll-usluge__card-inner--team{
  width: min(100%, 360px);
  margin: 0 auto 0 0;
  padding: 16px 22px 22px;
  display: flex;
  flex-direction: column;
}
.ll-usluge__card-inner--team .ll-usluge__title{
  margin-bottom: 12px;
}
.ll-usluge__card-inner--team .ll-usluge__text{
  margin-bottom: 18px;
}

/* --- Shared typography --- */
.ll-usluge__title{
  margin: 0 0 16px;
  font-family: var(--ll-font);
  font-weight: 900;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.25;
  color: var(--ll-text);
  text-transform: uppercase;
}
.ll-usluge__text{
  margin: 0 0 24px;
  font-family: var(--ll-font);
  font-weight: 400;
  font-size: clamp(15px, 2vw, 16px);
  line-height: 1.45;
  color: var(--ll-text);
}
.ll-usluge__card-half .ll-btn{
  align-self: flex-start;
  width: auto;
}

/* --- Images --- */
.ll-usluge__img-wrap{
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.ll-usluge__img-wrap--bottom{
  margin-top: auto;
  padding-top: 32px;
}
.ll-usluge__img{
  width: 100%;
  max-width: 380px;
  height: auto;
  display: block;
  object-fit: contain;
}
.ll-usluge__img-placeholder{
  width: 100%;
  max-width: 340px;
  aspect-ratio: 4/3;
  background: #eef1f3;
  border-radius: 8px;
}

/* Sections placeholders */
.ll-section{
  padding: 90px 0;
}

/* Contact section */
.ll-contact{
  position: relative;
  padding: 160px 0 30px;
  background: #fff;
  border-top: 1px solid var(--ll-line);
  border-bottom: 1px solid var(--ll-line);
}
.ll-contact__line{
  position: absolute;
  background: var(--ll-line);
  z-index: 1;
  pointer-events: none;
}
.ll-contact__line--left{
  top: 0;
  bottom: 0;
  left: max(8px, calc((100vw - var(--ll-container)) / 2 - 80px));
  width: 1px;
}
.ll-contact__line--right{
  top: 0;
  bottom: 0;
  right: max(8px, calc((100vw - var(--ll-container)) / 2 - 80px));
  width: 1px;
}
.ll-contact__line--top{
  left: 0;
  right: 0;
  top: 60px;
  height: 1px;
}
.ll-contact__line--bottom{
  left: 0;
  right: 0;
  bottom: 60px;
  height: 1px;
}
.ll-contact__inner{
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.ll-contact__title{
  margin: 0 0 12px;
  font-family: var(--ll-font);
  font-weight: 900;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.25;
  color: #000;
  text-transform: uppercase;
}
.ll-contact__text{
  margin: 0 0 18px;
  font-family: var(--ll-font);
  font-weight: 500;
  font-size: clamp(15px, 2vw, 16px);
  line-height: 1.45;
  color: #000;
}
.ll-contact__cta{
  margin-bottom: 40px;
}
.ll-contact__visuals{
  position: relative; 
  z-index: -1;
  top: -100px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 84px;
  flex-wrap: wrap;
}
.ll-contact__img-placeholder,
.ll-contact__img{
  width: 100%;
  max-width: 280px;
  aspect-ratio: 4/3;
  border-radius: 8px;
  object-fit: contain;
}
.ll-contact__img{
  aspect-ratio: auto;
  height: auto;
  display: block;
}
.ll-contact__visuals .ll-contact__img:nth-child(2){
  position: relative;
  top: -15px;
}
.ll-contact__img-placeholder{
  background: #eef1f3;
}

/* Values section */
.ll-values{
  position: relative;
  overflow: hidden;
  padding: 184px 0 0;
}
.ll-values__bg{
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.ll-values__line{
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.5);
  z-index: 1;
  pointer-events: none;
}
.ll-values__line--left{
  left: max(8px, calc((100vw - var(--ll-container)) / 2 - 80px));
}
.ll-values__line--right{
  right: max(8px, calc((100vw - var(--ll-container)) / 2 - 80px));
}
.ll-values__stars{
  position: absolute;
  z-index: 1;
  pointer-events: none;
  max-width: 100%;
  height: auto;
  will-change: transform;
  transition: transform 0.2s ease-out;
}
.ll-values__stars--1{
  top: 68px;
  left: 50%;
  transform: translateX(-46%);
  width: min(100%, 1024px);
}
.ll-values__stars--2{
  top: 34px;
  left: 50%;
  transform: translateX(-50%);
  width: min(100%, 1024px);
}
.ll-values__stars--3{
  top: 62px;
  left: 50%;
  transform: translateX(-45%);
  width: min(100%, 1024px);
}
.ll-values__inner{
  position: relative;
  z-index: 2;
  padding-top: 10px;
}
.ll-values__title{
  margin: 0;
  text-align: center;
  font-family: var(--ll-font);
  font-size: clamp(27px, 3.1vw, 38px);
  line-height: 1.2;
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
}
.ll-values__cards{
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}
.ll-values__card{
  background: #fff;
  border-radius: 10px;
  padding: 24px 20px;
  text-align: center;
}
.ll-values__icon{
  display: block;
  width: 100%;
  max-width: 100px;
  height: auto;
  margin: 0 auto 12px;
  object-fit: contain;
}
.ll-values__icon-placeholder{
  width: 100%;
  max-width: 100px;
  aspect-ratio: 1/1;
  margin: 0 auto 12px;
  background: #eef1f3;
  border-radius: 8px;
}
.ll-values__card-title{
  margin: 0 0 10px;
  min-height: 2.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ll-font);
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.2;
  font-weight: 900;
  color: #111;
  text-align: center;
}
.ll-values__card-text{
  margin: 0;
  font-family: var(--ll-font);
  font-size: clamp(15px, 2vw, 16px);
  line-height: 1.45;
  font-weight: 400;
  color: #111;
}
.ll-values__people-wrap{
  margin-top: 22px;
  display: flex;
  justify-content: center;
}
.ll-values__people{
  display: block;
  width: 100%;
  max-width: 320px;
  height: auto;
}

/* Footer */
.ll-footer{
  position: relative;
  width: 100%;
  padding: 56px 24px 48px;
  overflow: hidden;
  box-sizing: border-box;
}
.ll-footer__bg{
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.ll-footer__inner{
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0;
}
.ll-footer__top{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 48px;
}
.ll-footer__contact-label{
  margin: 0 0 8px;
  font-family: var(--ll-font);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  color: #ffffff;
}
.ll-footer__email{
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-family: var(--ll-font);
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.2s ease;
  word-break: break-word;
}
.ll-footer__email:hover{
  opacity: 0.9;
}
.ll-footer__arrow{
  display: inline-flex;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.ll-footer__arrow svg{
  width: 100%;
  height: 100%;
}
.ll-footer__nav{
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.ll-footer__nav a{
  font-family: var(--ll-font);
  font-weight: 400;
  font-size: 16px;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s ease;
}
.ll-footer__nav a:hover{
  color: #fff;
}
.ll-footer__logo-wrap{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 48px;
}
.ll-footer__icon{
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}
.ll-footer__bottom{
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.ll-footer__copy,
.ll-footer__rights{
  margin: 0;
  font-family: var(--ll-font);
  font-weight: 400;
  font-size: 16px;
  color: #ffffff;
}

/* Responsive – tablet / smaller devices (burger + center hero) */
@media (max-width: 980px){

  .ll-header::before,
  .ll-header::after{
    display: none;
  }
  .ll-burger{
    display: flex;
    order: 2;
    position: relative;
    z-index: 12;
  }
  body.ll-menu-open .ll-burger{
    position: fixed;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    border: 1px solid var(--ll-line);
    border-radius: 6px;
    background: #fff;
    align-items: center;
    justify-content: center;
    gap: 0;
  }
  body.ll-menu-open .ll-burger__line{
    display: none;
  }
  body.ll-menu-open .ll-burger::before{
    content: "X";
    font-family: var(--ll-font);
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    color: var(--ll-text);
  }

  .ll-nav{
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease, visibility .25s ease;
  }
  body.ll-menu-open .ll-nav{
    opacity: 1;
    visibility: visible;
  }
  body.ll-menu-open .ll-header{
    z-index: 11;
  }

  .ll-nav__list{
    flex-direction: column;
    gap: 24px;
    padding: 80px 24px 24px;
  }
  .ll-nav__list a{
    font-size: 18px;
  }

  .ll-hero__inner{
    grid-template-columns: 1fr;
  }
  .ll-hero{
    padding-top: 40px;
  }

  .ll-hero__content{
    max-width: 100%;
    text-align: center;
  }
  .ll-hero__title,
  .ll-hero__subtext{
    margin-left: auto;
    margin-right: auto;
  }
  .ll-hero__title{
    max-width: 100%;
  }
  .ll-hero .ll-btn--cta{
    margin: 0 auto;
  }

  .ll-about__text{
    font-size: clamp(15px, 2vw, 16px);
  }

  .ll-usluge__text{
    font-size: clamp(15px, 2vw, 16px);
  }

  .ll-values__card-text{
    font-size: clamp(15px, 2vw, 16px);
  }

  .ll-contact__text{
    font-size: clamp(15px, 2vw, 16px);
  }

  .ll-about__connects{
    transform: rotate(-90deg);
  }
  .ll-about__inner{
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .ll-about__content{
    max-width: 100%;
    order: 1;
    text-align: center;
  }
  .ll-about .ll-btn--about{
    margin-left: auto;
    margin-right: auto;
  }
  .ll-about__visual{
    order: 0;
  }

  .ll-hero::before,
  .ll-hero::after{
    display: none;
  }
  .ll-about__line--left,
  .ll-about__line--right{
    display: none;
  }
  .ll-usluge__section--konf::before,
  .ll-usluge__section--konf::after{
    display: none;
  }
  .ll-usluge__card-first-inner{
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .ll-usluge__card-first-inner .ll-usluge__img-wrap{
    order: 1;
  }
  .ll-usluge__content,
  .ll-usluge__card-inner--sajam,
  .ll-usluge__card-inner--team{
    text-align: center;
  }
  .ll-usluge__img-wrap{
    justify-content: center;
  }
  .ll-usluge__card-half .ll-btn,
  .ll-usluge__content .ll-btn{
    align-self: center;
  }
  .ll-usluge__row{
    grid-template-columns: 1fr;
  }
  .ll-usluge__card-half:first-child{
    border-right: none;
    border-bottom: 1px solid var(--ll-line);
  }
  .ll-usluge__card-half{
    padding: 32px 0;
  }
  .ll-usluge__card-half--sajam{
    padding: 16px 0;
  }
  .ll-usluge__card-half--team{
    padding: 16px 0;
  }
  .ll-usluge__card-inner--sajam{
    padding: 16px 18px 20px;
    width: 100%;
  }
  .ll-usluge__card-inner--team{
    padding: 16px 18px 20px;
    width: 100%;
  }

  .ll-values{
    padding-top: 64px;
  }
  .ll-values__line{
    display: none;
  }
  .ll-values__title{
    font-size: clamp(28px, 7vw, 42px);
  }
  .ll-values__cards{
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 28px;
  }
  .ll-values__card{
    padding: 20px 16px;
  }
  .ll-values__card-title{
    font-size: clamp(18px, 4.2vw, 22px);
    margin: 0 0 6px;
    min-height: 2em;
  }
  .ll-values__card-text{
    font-size: clamp(15px, 2vw, 16px);
  }
  .ll-values__stars--1{
    top: 25px;
  }
  .ll-values__stars--2{
    top: 5px;
  }
  .ll-values__stars--3{
    top: 20px;
  }
  .ll-values__icon,
  .ll-values__icon-placeholder{
    max-width: 108px;
    margin-bottom: 14px;
  }
  .ll-values__people{
    max-width: 260px;
  }

  .ll-contact__line--left,
  .ll-contact__line--right{
    display: none;
  }
  .ll-contact{
    padding: 130px 0 44px;
  }
  .ll-contact__text{
    margin-bottom: 12px;
  }
  .ll-contact .ll-container{
    padding-left: 12px;
    padding-right: 12px;
  }
  .ll-contact__visuals{
    gap: 14px;
    top: -20px;
  }
  .ll-contact__img-placeholder,
  .ll-contact__img{
    max-width: 160px;
  }
  .ll-contact__visuals .ll-contact__img:nth-child(2){
    top: -8px;
  }

  .ll-footer{
    padding: 40px 20px 36px;
  }
  .ll-footer__top{
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 36px;
    gap: 20px;
  }
  .ll-footer__contact{
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .ll-footer__nav{
    justify-content: center;
  }
  .ll-footer__logo-wrap{
    margin-bottom: 36px;
  }
  .ll-footer__icon{
    max-width: min(85vw, 400px);
  }
  .ll-footer__bottom{
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

}

/* Responsive – phone (left-align hero) */
@media (max-width: 640px){

  .ll-header__inner{
    flex-direction: row;
    align-items: center;
    gap: 14px;
  }

  .ll-hero__content{
    text-align: left;
  }
  .ll-hero__title,
  .ll-hero__subtext{
    margin-left: 0;
    margin-right: 0;
  }
  .ll-hero__subtext{
    font-size: 14px;
  }
  .ll-hero .ll-btn--cta{
    margin: 0;
  }

  .ll-about__text{
    font-size: 14px;
  }

  .ll-usluge__text{
    font-size: 14px;
  }

  .ll-values__card-text{
    font-size: 14px;
  }

  .ll-contact__text{
    font-size: 14px;
  }

  .ll-footer{
    padding: 32px 16px 28px;
  }
  .ll-footer__top{
    margin-bottom: 28px;
    gap: 16px;
  }
  .ll-footer__contact-label,
  .ll-footer__email,
  .ll-footer__nav a{
    font-size: 15px;
  }
  .ll-footer__logo-wrap{
    margin-bottom: 28px;
  }
  .ll-footer__icon{
    max-width: min(92vw, 320px);
  }
  .ll-footer__copy,
  .ll-footer__rights{
    font-size: 13px;
  }

}