:root {
  --navy: #071b2f;
  --navy-2: #0d2940;
  --ink: #101928;
  --muted: #5c6470;
  --gold: #b88946;
  --gold-light: #d5ab67;
  --paper: #fbfaf7;
  --line: #e8e1d8;
  --white: #ffffff;
  --wrap: min(1200px, calc(100vw - 48px));
  --font-sans: 'Inter', Arial, Helvetica, sans-serif;
  --font-serif: 'Cormorant Garamond', Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-sans);
  line-height: 1.65;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.wrap {
  width: var(--wrap);
  margin-inline: auto;
}

.topbar {
  background: var(--navy);
  color: var(--white);
  font-size: 12px;
}

.topbar__inner {
  min-height: 40px;
  display: flex;
  align-items: center;
  gap: 34px;
}

.topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.ti {
  color: var(--gold);
  font-size: 24px;
  line-height: 1;
}

.topbar .ti {
  color: var(--gold-light);
  font-size: 16px;
}

.icon {
  position: relative;
  display: inline-block;
  width: 15px;
  height: 15px;
  color: var(--gold-light);
}

.icon::before,
.icon::after {
  content: "";
  position: absolute;
  display: block;
}

.icon--phone::before {
  inset: 2px;
  border: 2px solid currentColor;
  border-top-color: transparent;
  border-right-color: transparent;
  border-radius: 50%;
  transform: rotate(-45deg);
}

.icon--mail::before {
  inset: 2px 0;
  border: 2px solid currentColor;
  border-radius: 2px;
}

.icon--mail::after {
  left: 2px;
  right: 2px;
  top: 5px;
  height: 6px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
}

.icon--pin::before {
  left: 3px;
  top: 0;
  width: 9px;
  height: 9px;
  border: 2px solid currentColor;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.icon--pin::after {
  left: 6px;
  top: 3px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: currentColor;
}

.calendar-icon {
  position: relative;
  width: 18px;
  height: 18px;
  border: 2px solid currentColor;
  border-radius: 2px;
}

.calendar-icon::before,
.calendar-icon::after {
  content: "";
  position: absolute;
}

.calendar-icon::before {
  left: 2px;
  right: 2px;
  top: 5px;
  border-top: 2px solid currentColor;
}

.calendar-icon::after {
  left: 5px;
  top: -5px;
  width: 6px;
  height: 6px;
  border-left: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.socials {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 22px;
  font-weight: 700;
}

.socials a {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
}

.socials .ti {
  color: var(--white);
  font-size: 18px;
}

.nav {
  background: var(--white);
  box-shadow: 0 1px 0 rgba(7, 27, 47, .08);
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav__inner {
  height: 108px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand img {
  width: 265px;
}

.nav__links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 34px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.nav__links a {
  position: relative;
  padding-block: 16px;
}

.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 8px;
  height: 2px;
  background: transparent;
}

.nav__links a:hover::after,
.nav__links .is-active::after {
  background: var(--gold);
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 3px;
  padding: 13px 24px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  line-height: 1.2;
  cursor: pointer;
}

.btn .ti {
  color: currentColor;
  font-size: 20px;
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--white);
}

.btn--outline {
  border-color: var(--gold);
  color: var(--gold-light);
  background: rgba(7, 27, 47, .25);
}

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

.nav__cta {
  min-width: 188px;
}

.nav-toggle,
.nav-toggle-label {
  display: none;
}

.hero {
  position: relative;
  min-height: 580px;
  overflow: hidden;
  background: var(--navy);
}

.hero__media {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(7, 27, 47, .98) 0%, rgba(7, 27, 47, .78) 35%, rgba(7, 27, 47, .18) 72%),
    url("assets/hero-office.png");
  background-size: cover;
  background-position: center;
}

.hero__content {
  position: relative;
  min-height: 580px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-block: 72px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.hero h1,
.section h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.05;
  color: var(--white);
}

.hero h1 {
  max-width: 610px;
  font-size: clamp(48px, 6vw, 76px);
}

.hero h1 span {
  color: var(--gold-light);
}

.hero__lead {
  width: min(460px, 100%);
  margin: 28px 0 30px;
  color: rgba(255, 255, 255, .9);
  font-size: 21px;
  line-height: 1.5;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.hero__badge {
  position: absolute;
  right: 8px;
  bottom: 34px;
  display: grid;
  grid-template-columns: 54px auto;
  align-items: center;
  gap: 18px;
  width: min(290px, 40vw);
  padding: 24px 28px;
  background: rgba(7, 27, 47, .95);
  color: var(--white);
  border-radius: 4px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .22);
}

.hero__badge strong {
  font-size: 17px;
  line-height: 1.65;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.badge-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  color: var(--gold-light);
  font-size: 54px;
  line-height: 1;
}

.medal::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 0;
  width: 34px;
  height: 34px;
  border: 3px solid currentColor;
  border-radius: 50%;
  box-shadow: inset 0 0 0 6px var(--navy);
}

.medal::after {
  content: "";
  position: absolute;
  left: 14px;
  bottom: 0;
  width: 21px;
  height: 25px;
  border-left: 3px solid currentColor;
  border-right: 3px solid currentColor;
  transform: skewX(-14deg);
}

.service-strip {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.service-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding-block: 34px;
}

.service-strip article {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 18px;
  padding: 0 30px;
  border-right: 1px solid var(--line);
}

.service-strip article:first-child {
  padding-left: 0;
}

.service-strip article:last-child {
  border-right: 0;
  padding-right: 0;
}

/* Lucide ikonice u service strip sekciji */
.service-strip article>.lucide,
.service-strip article>[data-lucide] {
  width: 42px;
  height: 42px;
  color: var(--gold);
  stroke-width: 1.3;
  flex-shrink: 0;
  margin-top: 2px;
}

.line-icon {
  position: relative;
  display: block;
  width: 46px;
  height: 46px;
  color: var(--gold);
}

.line-icon::before,
.line-icon::after {
  content: "";
  position: absolute;
  display: block;
}

.line-icon--book::before {
  inset: 2px 8px 2px 4px;
  border: 2px solid currentColor;
  border-radius: 3px;
}

.line-icon--book::after {
  right: 2px;
  bottom: 2px;
  width: 18px;
  height: 22px;
  border: 2px solid currentColor;
  border-radius: 3px;
  background: var(--white);
}

.line-icon--person::before {
  left: 13px;
  top: 1px;
  width: 20px;
  height: 20px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.line-icon--person::after {
  left: 6px;
  bottom: 2px;
  width: 34px;
  height: 18px;
  border: 2px solid currentColor;
  border-radius: 18px 18px 4px 4px;
}

.line-icon--doc::before {
  left: 8px;
  top: 3px;
  width: 27px;
  height: 38px;
  border: 2px solid currentColor;
  border-radius: 3px;
}

.line-icon--doc::after {
  right: 4px;
  bottom: 1px;
  width: 18px;
  height: 18px;
  border: 2px solid currentColor;
  border-radius: 50%;
  background: var(--white);
}

.line-icon--chart::before {
  left: 5px;
  bottom: 4px;
  width: 7px;
  height: 17px;
  border: 2px solid currentColor;
  box-shadow: 15px -8px 0 -2px var(--white), 15px -8px 0 0 currentColor, 30px -20px 0 -2px var(--white), 30px -20px 0 0 currentColor;
}

.line-icon--chart::after {
  right: 0;
  top: 4px;
  width: 28px;
  height: 18px;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
  transform: skew(-12deg) rotate(-22deg);
}

.service-strip h2,
.feature-grid h3,
.blog-grid h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.25;
}

.service-strip p,
.feature-grid p,
.blog-grid p,
.about p,
.pricing p,
.contact p {
  margin: 0;
}

.section {
  padding-block: 74px;
}

.about__grid {
  display: grid;
  grid-template-columns: .9fr 1.75fr .8fr;
  gap: 44px;
  align-items: center;
}

.section h2 {
  color: var(--navy);
  font-size: clamp(34px, 4vw, 48px);
  margin-bottom: 22px;
}

.about__copy p {
  color: var(--ink);
  margin-bottom: 18px;
}

.about__copy .btn {
  margin-top: 8px;
}

.portrait {
  position: relative;
  min-height: 360px;
  border-radius: 6px;
  overflow: hidden;
}

.portrait img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.quote-card {
  position: absolute;
  top: 38px;
  right: 28px;
  width: min(350px, 46%);
  min-height: 280px;
  padding: 30px 36px;
  background: rgba(7, 27, 47, .96);
  color: var(--white);
  border-radius: 4px;
}

.signature {
  color: var(--gold-light);
  font-family: "Licorice", "Segoe Script", cursive;
  font-size: 34px;
  line-height: 1;
}

.role {
  margin: 4px 10px 0px!important;
  text-align: right;
  color: rgba(255, 255, 255, .82);
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .18em;
}

blockquote {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 20px;
  line-height: 1.75;
}

.signature--small {
  margin-top: 18px !important;
  text-align: right;
  font-size: 26px;
}

.stats {
  display: grid;
  gap: 28px;
}

.stat-card {
  display: grid;
  grid-template-columns: 42px 1fr;
  column-gap: 16px;
  align-items: center;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}

.stat-card .lucide,
.stat-card [data-lucide] {
  grid-row: span 2;
  width: 38px;
  height: 38px;
  color: var(--gold);
  stroke-width: 1.3;
}

.stat-card span {
  color: var(--navy);
  font-family: var(--font-serif);
  font-size: 42px;
  line-height: 1;
}

.stat-card p {
  margin: 6px 0 0;
  color: var(--ink);
}

.industries {
  background: var(--white);
  border-block: 1px solid var(--line);
}

.industries__inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 42px;
}

.industries p {
  margin: 0;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.industries__icons {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 48px;
  color: #c8b59d;
}

.industries__icons .ti {
  color: #c8b59d;
  font-size: 30px;
}

.industry-icon {
  position: relative;
  width: 34px;
  height: 34px;
  display: block;
  color: #c8b59d;
}

.industry-icon::before,
.industry-icon::after {
  content: "";
  position: absolute;
  display: block;
}

.industry-icon--commerce::before {
  left: 5px;
  top: 9px;
  width: 22px;
  height: 15px;
  border: 2px solid currentColor;
  border-top: 0;
}

.industry-icon--commerce::after {
  left: 8px;
  bottom: 2px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 14px 0 0 currentColor;
}

.industry-icon--legal::before {
  left: 15px;
  top: 3px;
  width: 3px;
  height: 27px;
  background: currentColor;
}

.industry-icon--legal::after {
  left: 4px;
  top: 7px;
  width: 26px;
  height: 18px;
  border-top: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
}

.industry-icon--it::before {
  left: 3px;
  top: 7px;
  width: 28px;
  height: 18px;
  border: 2px solid currentColor;
  border-radius: 2px;
}

.industry-icon--it::after {
  left: 10px;
  bottom: 3px;
  width: 14px;
  height: 2px;
  background: currentColor;
}

.industry-icon--health::before {
  left: 8px;
  top: 7px;
  width: 18px;
  height: 18px;
  border-left: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  transform: rotate(-45deg);
}

.industry-icon--logistics::before {
  left: 2px;
  top: 12px;
  width: 29px;
  height: 13px;
  border: 2px solid currentColor;
}

.industry-icon--logistics::after {
  left: 7px;
  bottom: 3px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 16px 0 0 currentColor;
}

.industry-icon--services::before {
  left: 5px;
  top: 5px;
  width: 24px;
  height: 24px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.industry-icon--services::after {
  left: 15px;
  top: 0;
  width: 4px;
  height: 34px;
  background: currentColor;
}

.why {
  background: #f6f1ea;
}

.section-head {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-head>p:last-child {
  color: var(--muted);
  font-size: 18px;
}

.feature-grid,
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.feature-grid article,
.blog-grid article,
.price-card,
.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 28px;
  box-shadow: 0 14px 35px rgba(7, 27, 47, .05);
}

.pricing {
  background: var(--navy);
  color: var(--white);
}

.pricing h2,
.pricing .section-kicker {
  color: var(--white);
}

.pricing .section-kicker {
  color: var(--gold-light);
}

.pricing__grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 54px;
  align-items: center;
}

.pricing p {
  max-width: 680px;
  color: rgba(255, 255, 255, .78);
}

.price-card {
  background: var(--white);
  color: var(--navy);
}

.price-card span {
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.price-card strong {
  display: block;
  margin: 8px 0;
  font-family: var(--font-serif);
  font-size: 38px;
  line-height: 1;
}

.price-card p {
  color: var(--muted);
  margin-bottom: 24px;
}

.blog {
  background: var(--paper);
}

.blog-grid time {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.blog-grid h3 {
  margin-top: 12px;
}

.blog-grid a {
  color: var(--gold);
  font-weight: 800;
}

.contact {
  background: var(--white);
}

.contact__grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 60px;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
  color: var(--navy);
  font-weight: 700;
}

.contact-list a,
.contact-list > span {
  display: grid;
  grid-template-columns: 22px 1fr;
  align-items: center;
  gap: 12px;
}

.contact-list .lucide,
.contact-list [data-lucide] {
  width: 18px;
  height: 18px;
  color: var(--gold);
  stroke-width: 1.5;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
  background: #fffdf9;
}

.footer {
  background: var(--navy);
  color: rgba(255, 255, 255, .72);
  padding-block: 28px;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer img {
  width: 180px;
  filter: brightness(0) invert(1);
}

.footer p {
  margin: 0;
}

/* FontAwesome + Lucide icons */

/* FontAwesome */
.fa,
.fa-solid,
.fa-regular,
.fa-brands {
  color: currentColor;
  line-height: 1;
}

.topbar .fa,
.topbar .fa-solid,
.topbar .fa-regular,
.topbar .fa-brands {
  width: 16px;
  color: var(--gold-light);
  font-size: 16px;
  text-align: center;
}

.socials .fa,
.socials .fa-solid,
.socials .fa-regular,
.socials .fa-brands {
  color: var(--white);
  font-size: 18px;
}

.btn .fa,
.btn .fa-solid,
.btn .fa-regular,
.btn .fa-brands {
  color: currentColor;
  font-size: 18px;
}

.service-strip .fa,
.service-strip .fa-solid,
.service-strip .fa-regular,
.service-strip .fa-brands {
  color: var(--gold);
  font-size: 42px;
}

.hero__badge .fa,
.hero__badge .fa-solid,
.hero__badge .fa-regular,
.hero__badge .fa-brands {
  color: var(--gold-light);
  font-size: 42px;
}

.industries__icons .fa,
.industries__icons .fa-solid,
.industries__icons .fa-regular,
.industries__icons .fa-brands {
  color: #c8b59d;
  font-size: 28px;
}

.contact-list .fa,
.contact-list .fa-solid,
.contact-list .fa-regular,
.contact-list .fa-brands {
  color: var(--gold);
  font-size: 18px;
}


/* Lucide */
.lucide,
[data-lucide] {
  width: 20px;
  height: 20px;
  color: currentColor;
  vertical-align: middle;
  stroke-width: 2;
  flex-shrink: 0;
}

.topbar .lucide,
.topbar [data-lucide] {
  width: 16px;
  height: 16px;
  color: var(--gold-light);
}

.service-strip .lucide,
.service-strip [data-lucide] {
  width: 42px;
  height: 42px;
  color: var(--gold);
}

.hero__badge .lucide,
.hero__badge [data-lucide] {
  width: 42px;
  height: 42px;
  color: var(--gold-light);
}

.industries__icons .lucide,
.industries__icons [data-lucide] {
  width: 28px;
  height: 28px;
  color: #c8b59d;
}

.contact-list .lucide,
.contact-list [data-lucide] {
  width: 18px;
  height: 18px;
  color: var(--gold);
}

@media (max-width: 1080px) {
  .nav__inner {
    height: 92px;
  }

  .brand img {
    width: 205px;
  }

  .nav__links {
    gap: 20px;
  }

  .nav__cta {
    display: none;
  }

  .service-strip__grid,
  .feature-grid,
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-strip article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 24px 20px;
  }

  .service-strip article:first-child {
    padding-left: 20px;
  }

  .about__grid {
    grid-template-columns: 1fr;
  }

  .stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .industries__inner,
  .industries__icons {
    flex-wrap: wrap;
  }
}

@media (max-width: 760px) {
  :root {
    --wrap: min(100% - 28px, 1200px);
  }

  .topbar {
    display: none;
  }

  .topbar__inner {
    min-height: auto;
    padding-block: 10px;
    flex-wrap: wrap;
    gap: 10px 18px;
  }

  .socials {
    margin-left: 0;
  }

  .nav__inner {
    height: 82px;
  }

  .brand img {
    width: 180px;
  }

  .nav-toggle-label {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    margin-left: auto;
    border: 1px solid var(--line);
    border-radius: 4px;
  }

  .nav-toggle-label span,
  .nav-toggle-label span::before,
  .nav-toggle-label span::after {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--navy);
    content: "";
  }

  .nav-toggle-label span::before {
    transform: translateY(-7px);
  }

  .nav-toggle-label span::after {
    transform: translateY(5px);
  }

  .nav__links {
    position: absolute;
    left: 0;
    right: 0;
    top: 82px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 16px 24px 24px;
    background: var(--white);
    box-shadow: 0 16px 35px rgba(7, 27, 47, .14);
  }

  .nav-toggle:checked~.nav__links {
    display: flex;
  }

  .hero,
  .hero__content {
    min-height: 640px;
  }

  .hero__media {
    background-image:
      linear-gradient(90deg, rgba(7, 27, 47, .96), rgba(7, 27, 47, .66)),
      url("assets/hero-office.png");
    background-position: 64% center;
  }

  .hero__content {
    padding-block: 44px 160px;
  }

  .hero h1 {
    font-size: 44px;
  }

  .hero__lead {
    font-size: 18px;
  }

  .hero__badge {
    left: 14px;
    right: 14px;
    bottom: 24px;
    width: auto;
  }

  .service-strip__grid,
  .feature-grid,
  .blog-grid,
  .pricing__grid,
  .contact__grid,
  .stats {
    grid-template-columns: 1fr;
  }

  .quote-card {
    position: static;
    width: 100%;
    border-radius: 0;
  }

  .portrait {
    display: grid;
  }

  .industries__inner {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 22px;
  }

  .industries__icons {
    margin-left: 0;
    gap: 26px;
  }

  .footer__inner {
    align-items: flex-start;
    flex-direction: column;
  }

}
