:root {
  --brand-color: #e4bf73;
}

@keyframes highlight-flash {
  0% {
    color: inherit;
  }
  25% {
    color: var(--brand-color);
  }
  100% {
    color: inherit;
  }
}

.contact-highlight {
  color: inherit;
}

.contact-highlight.flash {
  animation: highlight-flash 2.5s ease-in-out forwards;
}
html,
body {
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #fff;
  color: #1f2937;
  scroll-behavior: smooth;
}

.hero-section {
  position: relative;
  width: 100%;
}

.logo-top {
  position: absolute;
  width: 150px;
  height: auto;
  align-self: flex-start;
  z-index: 20;
}

.logo-bottom {
  width: 150px;
  height: auto;
}

.main-banner {
  display: block;
  width: 100vw;
  max-width: 100%;
  height: auto;
  max-height: 85vh;
  object-fit: cover;
  object-position: center;
}

.navbar {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 10;
  display: flex;
  justify-content: flex-end;
  padding: 16px 18px;
}

.nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.35rem, 0.9vw, 0.75rem) clamp(0.6rem, 1.8vw, 1.4rem);
  margin: 0;
  padding: 0.5rem 0.75rem;
  list-style: none;
}

.nav-list li {
  display: flex;
}

.nav-list a {
  text-decoration: none;
  color: #111827;
  font-weight: 600;
  font-size: 1.15rem;
  position: relative;
  transition: color 0.2s;
}

.nav-home {
  display: none;
}

.nav-list svg {
  width: 18px;
  height: 18px;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--brand-color);
  transition: width 0.25s ease;
}

.nav-list a:hover {
  color: #b8943b;
}

.nav-list a:hover::after {
  width: 100%;
}

.hero-title {
  font-size: 3.85rem;
  line-height: 1.1;
  margin: 0;
  color: #000;
}

.hero-description {
  font-size: 1.7rem;
  line-height: 1.4;
  max-width: 60%;
  color: #000;
}

.hero-content {
  position: absolute;
  top: 20%;
  left: 3%;
  z-index: 5;
  max-width: 42rem;
}

.hero-content-glass {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(10px);
  padding: 22px 28px;
  border-radius: 8px;
  border-left: 4px solid var(--brand-color);
}

.brand-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 24px;
  padding: 24px 16px;
}

.brand-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(100%, 420px);
  margin: 0;
  padding: 16px;
  gap: 14px;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .brand-row {
    flex-direction: column;
    align-items: center;
  }

  .brand-box {
    width: 100%;
  }

  .main-banner {
    max-height: 50vh;
  }

  .nav-list a {
    font-size: 0.75rem;
    text-shadow: 0 0 6px rgba(255, 255, 255, 0.85);
  }

  .nav-home {
    display: flex;
  }

  .hero-title {
    font-size: 1.6rem;
    margin-top: 10px;
    color: #000;
  }

  .hero-description {
    font-size: 0.85rem;
    max-width: 80%;
    color: #000;
  }

  .hero-content-glass {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    max-width: 100%;
    margin: 0;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 0;
    padding: 20px 18px;
    border-left: 4px solid var(--brand-color);
  }
}

.brand-photo {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  height: auto;
  object-fit: cover;
  object-position: center;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(17, 24, 39, 0.12);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.brand-box:hover .brand-photo {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(17, 24, 39, 0.18);
}

.brand-logo {
  display: block;
  width: 40%;
  height: 60px;
  object-fit: contain;
  align-self: center;
}

.brand-description {
  font-size: medium;
  line-height: 1.4;
  text-align: center;
  max-width: 90%;
  align-self: center;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  min-height: 42px;
  margin-top: auto;
  padding: 0 14px;
  border: 2px solid var(--brand-color);
  text-decoration: none;
  color: #1f2937;
  font-size: 0.95rem;
  font-weight: 600;
  align-self: center;
  text-align: center;
  box-sizing: border-box;
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}

.brand-link:hover {
  background-color: var(--brand-color);
  color: #fff;
}

.b2b-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  width: 100%;
  padding: 18px 16px;
  background-color: #fff;
}

.b2b-meta {
  display: flex;
  flex-direction: column;
  margin-right: 0;
  margin-left: 20px;
}

.b2b-header {
  display: flex;
  justify-content: flex-start;
  gap: 18px;
}

.b2b-title {
  font-size: clamp(1.5rem, 3.2vw, 2rem);
  font-weight: 700;
  margin: 0;
  text-align: left;
}

.sub-title {
  font-size: clamp(1.5rem, 3.2vw, 2rem);
  font-weight: 600;
  margin: 0;
  text-align: center;
  align-self: center;
}

.b2b-description {
  font-size: 1rem;
  line-height: 1.75;
  width: 100%;
  max-width: 34rem;
  margin: 0;
  text-align: left;
}

.b2b-icons {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.b2b-leading-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 120px;
  min-width: 120px;
}

.b2b-leading-icon svg {
  width: 100%;
  height: auto;
  display: block;
}

.vyhody {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  max-width: 64rem;
  margin: 32px auto 64px;
  padding: 0 20px;
}

.vyhoda-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1 1 260px;
  max-width: 300px;
  gap: 16px;
}

.svg-content {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(17, 24, 39, 0.12);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.vyhoda-card:hover .svg-content {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(17, 24, 39, 0.18);
}

.vyhoda-card .sub-title {
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0;
  text-align: center;
  align-self: center;
}

.vyhoda-card .b2b-description {
  font-size: 0.95rem;
  line-height: 1.65;
  max-width: 28rem;
  text-align: center;
}

.b2b-icon-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 14px 12px;
  min-width: 100px;
  text-align: center;
  color: #111827;
}

.b2b-icon-card svg {
  width: 48px;
  height: 48px;
  color: var(--brand-color);
}

.b2b-icon-card .icon-circle {
  width: 60px;
  height: 60px;
  background: rgba(228, 191, 115, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.b2b-icon-card .icon-circle svg {
  width: 30px;
  height: 30px;
}

.b2b-icon-card span {
  display: block;
  font-size: 0.95rem;
  line-height: 1.3;
}

.b2b-divider {
  display: inline-flex;
  width: 1px;
  height: 52px;
  background: rgba(0, 0, 0, 0.16);
  flex-shrink: 0;
}

.footer {
  background-color: rgba(228, 191, 115, 0.4);
  padding: 12px 0;
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.footer > div {
  padding: 0 12px;
}

.footer > div:not(:first-child) {
  border-left: 1px solid rgba(0, 0, 0, 0.16);
}

.footer-list {
  list-style: none;
  margin: 0;
  line-height: 1.55;
  padding: 0;
  font-size: 0.95rem;
}

.footer-list li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.ig-logo {
  height: 25px;
  width: auto;
  display: block;
  border-left: 1px solid rgba(0, 0, 0, 0.16);
  padding-left: 14px;
  transition: opacity 0.2s;
}

.footerpic {
  height: auto;
  width: 200px;
  display: block;
  padding-left: 14px;
  object-fit: contain;
}

.ig-logo:hover {
  opacity: 0.7;
}

.contact-icon {
  height: 18px;
  width: auto;
  display: block;
}
.location-icon {
  height: 22px;
  width: auto;
  display: block;
}

.copyright {
  font-size: 0.9rem;
  flex-basis: 100%;
  width: 100%;
  text-align: center;
  padding-top: 8px;
  margin-top: 0;
  color: #4b5563;
}

.TegaTrade-Logo-mobile {
  display: none;
}
@media (max-width: 860px) {
  .TegaTrade-Logo-mobile {
    display: block;
    width: 120px;
    height: auto;
    margin: 0 auto;
    margin-bottom: 12px;
  }

  .logo-top {
    display: none;
  }

  .footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .b2b-section {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 20px 16px 24px;
  }

  .logo-bottom {
    display: none;
  }

  .ig-logo {
    height: 20px;
    width: auto;
    display: block;
    border-left: none;
    padding-left: 0;
    padding-top: 8px;
    margin-top: 0;
  }

  .footerpic {
    display: none;
  }

  .footer > div:not(:first-child) {
    border-left: none;
  }

  .bottom-mobiele-line {
    border-bottom: 1px solid rgba(0, 0, 0, 0.16);
    padding-bottom: 12px;
    margin-bottom: 12px;
  }

  .footer-list {
    line-height: 1.6;
  }

  .b2b-meta {
    width: 100%;
    max-width: 34rem;
    align-items: center;
    text-align: center;
    margin-left: 0;
    padding: 0 10px;
  }

  .b2b-header {
    flex-direction: column;
    align-items: center;
  }

  .b2b-description {
    max-width: 100%;
    width: 100%;
    font-size: 0.95rem;
    margin: 0;
    padding: 0;
    text-align: center;
  }

  .b2b-title {
    text-align: center;
    align-self: center;
  }

  .b2b-icons {
    justify-content: center;
    gap: 12px;
  }

  .b2b-icon-card {
    min-width: auto;
    width: calc(50% - 14px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 12px;
    margin-left: 0;
    padding: 14px 10px;
    box-shadow: inset 0 0 0 1px rgba(17, 24, 39, 0.06);
    background-color: rgba(255, 255, 255, 0.6);
  }

  .b2b-leading-icon {
    display: none;
  }

  .b2b-divider {
    display: none;
  }

  .vyhody {
    gap: 20px;
    margin-top: 24px;
    padding: 0 16px;
  }

  .vyhoda-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .main-banner {
    max-height: 45vh;
  }

  .nav-list a {
    font-size: 0.65rem;
    text-shadow: 0 0 6px rgba(255, 255, 255, 0.85);
  }

  .hero-title {
    font-size: 1.3rem;
    color: #000;
  }

  .hero-description {
    font-size: 0.75rem;
    max-width: 100%;
    color: #000;
  }

  .hero-content-glass {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    max-width: 100%;
    margin: 0;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 0;
    padding: 14px 14px;
    border-left: 4px solid var(--brand-color);
  }
}

@media (max-width: 620px) {
  .b2b-section {
    padding: 18px 14px;
  }
}

.contact-intro {
  text-align: center;
  max-width: 48rem;
  margin: 48px auto 0;
  padding: 0 20px;
}

.contact-intro p {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.6;
  color: #1f2937;
  margin: 0;
  position: relative;
  display: inline-block;
}

.contact-intro p::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: var(--brand-color);
  margin: 12px auto 0;
  border-radius: 2px;
}

.contact-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  max-width: 56rem;
  margin: 48px auto 64px;
  padding: 0 20px;
}

.contact-card {
  flex: 1 1 300px;
  max-width: 420px;
  background: #fff;
  border-radius: 16px;
  padding: 32px 28px 28px;
  box-shadow: 0 4px 24px rgba(17, 24, 39, 0.08);
  border-top: 4px solid var(--brand-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(17, 24, 39, 0.14);
}

.contact-card-icon {
  width: 56px;
  height: 56px;
  background: rgba(228, 191, 115, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-color);
}

.contact-card-icon svg {
  width: 28px;
  height: 28px;
}

.contact-card-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: #111827;
  margin: 0;
  text-align: center;
}

.contact-card-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}

.contact-line {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #374151;
}

.contact-line svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--brand-color);
}

.contact-line a {
  color: #374151;
  text-decoration: none;
  transition: color 0.2s;
}

.contact-line a:hover {
  color: var(--brand-color);
}

@media (max-width: 768px) {
  .contact-cards {
    gap: 24px;
    margin: 32px auto 48px;
    padding: 0 16px;
  }

  .contact-card {
    flex: 1 1 100%;
    max-width: 100%;
    padding: 24px 20px 22px;
  }

  .contact-intro {
    margin: 36px auto 0;
    padding: 0 16px;
  }
}
