@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Oswald:wght@600;700&display=swap');

:root{
  font-size:15px;
}

*{ box-sizing:border-box; }
html{ overflow-x:hidden; }
body{
  margin:0;
  font-family:"Montserrat", "Segoe UI", -apple-system, "Helvetica Neue", Arial, sans-serif;
  background:#f7f7f8;
  color:#0f172a;
  min-height:100vh;
  display:flex;
  flex-direction:column;
  overflow-x:hidden;
}

.splash-overlay{
  position:fixed;
  inset:0;
  background:rgba(15,23,42,0.9);
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:2000;
  animation:splash-fade 2.5s ease forwards;
}
.splash-logo{
  width:min(220px, 45vw);
  height:auto;
  filter:drop-shadow(0 12px 24px rgba(0,0,0,0.35));
}
@keyframes splash-fade{
  0%{ opacity:1; visibility:visible; }
  70%{ opacity:1; }
  100%{ opacity:0; visibility:hidden; }
}
@media (prefers-reduced-motion: reduce){
  .splash-overlay{
    animation:none;
    opacity:0;
    visibility:hidden;
  }
}

.hero-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:10px 20px;
  background:#ffffff;
  border-bottom:1px solid #e5e7eb;
}
.hero-left{
  display:flex;
  align-items:center;
  gap:22px;
}

.brand-logo{
  height: 64px;
  width:auto;
  object-fit:contain;
}

.hero-actions{
  display:flex;
  align-items:center;
  gap:12px;
}

.btn-login{
  min-width:120px;
  font-weight:700;
  padding:10px 16px;
  font-size:1rem;
  border-width:2px;
}

.btn-contact{
  min-width:130px;
  font-weight:700;
  padding:10px 16px;
  font-size:1rem;
  border:2px solid #111827;
  color:#ffffff;
  background:#111827;
  border-radius:8px;
  transition:all 0.2s ease;
}
.btn-contact:hover{
  background:#c5a662;
  border-color:#c5a662;
  color:#111827;
  text-decoration:none;
}

.page-body{
  flex:1;
}

.hero-main{
  position:relative;
  overflow:hidden;
  background:transparent;
  min-height:660px;
  padding:clamp(22px, 4vw, 36px) 0;
}
.homepage-section,
.homepage-section *{
  font-family:"Montserrat", "Segoe UI", -apple-system, "Helvetica Neue", Arial, sans-serif;
}
.js .reveal-on-scroll{
  opacity:0;
  transform:translateY(24px);
  filter:blur(2px);
  transition:opacity 0.6s ease, transform 0.6s ease, filter 0.6s ease;
}
.js .reveal-on-scroll.is-visible{
  opacity:1;
  transform:translateY(0);
  filter:blur(0);
}
.hero-top-bg{
  display:block;
  position:absolute;
  inset:-40px;
  background:url('/static/images/landingpagebackground.png') center/cover no-repeat;
  filter:blur(4px);
  transform:scale(1.12);
  opacity:0.8;
  pointer-events:none;
  z-index:0;
}
.hero-main::after{
  content:"";
  position:absolute;
  inset:0;
  background:radial-gradient(circle at 32% 32%, rgba(0,0,0,0.4), transparent 45%),
             radial-gradient(circle at 78% 22%, rgba(0,0,0,0.18), transparent 38%),
             linear-gradient(120deg, rgba(12,18,30,0.6), rgba(12,18,30,0.25), rgba(12,18,30,0.08));
  pointer-events:none;
  z-index:0;
}
.hero-main::before{
  content:"";
  position:absolute;
  inset:-20%;
  background:linear-gradient(110deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.32) 35%, rgba(255,255,255,0.05) 70%);
  filter:blur(28px);
  opacity:0.55;
  transform:translateX(-10%);
  animation: heroBeam 18s ease-in-out infinite alternate;
  z-index:0;
  pointer-events:none;
  mix-blend-mode:screen;
}

.hero-visual .container-sm{
  position:relative;
  z-index:2;
}
.hero-headline{
  position:static;
  transform:none;
  max-width:520px;
  color:#ffffff;
  z-index:2;
  text-shadow:0 8px 24px rgba(0,0,0,0.4);
}
.hero-headline h1{
  margin:0;
  font-size:clamp(2rem, 3.6vw, 2.9rem);
  font-weight:300;
  letter-spacing:-0.01em;
  line-height:1.12;
  color:#f5f7fb;
  text-shadow:0 14px 32px rgba(0,0,0,0.4);
}
.hero-main .col-lg-7{
  color:#f8fafc;
}
.hero-main .hero-title,
.hero-main h1,
.hero-main h2,
.hero-main h3{
  color:#ffffff;
}
.hero-main .lead,
.hero-main .hero-highlights li,
.hero-main p,
.hero-main ul{
  color:#e5e7eb;
}
.hero-main .hero-dot{
  background:#ffffff;
}
.hero-system{
  background:transparent;
  border-radius:0;
  padding:0;
  border:none;
  box-shadow:none;
  width:110%;
  max-width:1200px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:center;
  aspect-ratio:16/9;
  overflow:hidden;
  transform:none;
}
.hero-system img{
  display:block;
  width:100%;
  height:100%;
  object-fit:contain;
  border-radius:0;
  backdrop-filter:none;
}

.hero-fade-out{
  position:absolute;
  left:0;
  right:0;
  bottom:-1px;
  height:200px;
  background:linear-gradient(to bottom,
    rgba(247,247,248,0) 0%,
    rgba(247,247,248,0.55) 55%,
    #f7f7f8 100%);
  pointer-events:none;
  z-index:1;
  backdrop-filter:blur(6px);
}

@media (max-width: 992px){
  .hero-system{
    width:108%;
    max-width:840px;
    transform:none;
    margin:0 auto;
  }
}

@keyframes heroBeam{
  from{ transform:translateX(-12%) rotate(-2deg); opacity:0.35; }
  to{ transform:translateX(8%) rotate(2deg); opacity:0.6; }
}

*{ box-sizing:border-box; }
body{
  margin:0;
  font-family:"Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  background:#f7f7f8;
  color:#0f172a;
  min-height:100vh;
  display:flex;
  flex-direction:column;
}

.hero-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:10px 20px;
  background:#ffffff;
  border-bottom:1px solid #e5e7eb;
}

.brand-logo{
  height: 52px;
  width:auto;
  object-fit:contain;
}
.brand-link{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
}
.hero-left{
  display:flex;
  align-items:center;
  gap:12px;
}
.hero-center{
  flex:1;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:36px;
}
.nav-item{
  position:relative;
  display:flex;
  align-items:center;
}
.dropdown-panel{
  position:absolute;
  top:100%;
  left:50%;
  transform:translate(-50%, 10px);
  background:#ffffff;
  border:1px solid #e5e7eb;
  box-shadow:0 12px 30px rgba(0,0,0,0.08);
  border-radius:12px;
  padding:14px 0;
  min-width:220px;
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transition:opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  z-index:10;
}
.nav-dropdown:hover .dropdown-panel,
.nav-dropdown:focus-within .dropdown-panel{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
  transform:translate(-50%, 0);
}
.dropdown-list{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  flex-direction:column;
  gap:4px;
}
.dropdown-list a{
  display:block;
  padding:8px 16px;
  color:#0f172a;
  text-decoration:none;
  font-weight:600;
}
.dropdown-list a:hover{
  background:#f3f4f6;
  color:#c5a662;
}
.hero-home-link{
  font-weight:400;
  color:#111827;
  font-size:1.25rem;
  text-decoration:none;
  position:relative;
  padding-bottom:4px;
}
.hero-home-link:hover{
  color:#c5a662;
}
.hero-home-link::after{
  content:'';
  position:absolute;
  left:0;
  bottom:0;
  height:2px;
  width:100%;
  background:#c5a662;
  transform:scaleX(0);
  transform-origin:left;
  transition:transform 0.2s ease;
}
.hero-home-link:hover::after{
  transform:scaleX(1);
}
.brand-pos{
  font-weight:300;
  font-size:1.6rem;
  color:#111827;
  letter-spacing:0.08em;
}

.hero-actions{
  display:flex;
  align-items:center;
  gap:10px;
}

.lang-toggle{
  font-weight:600;
  color:#0f172a;
  white-space:nowrap;
}
.btn-login{
  min-width:110px;
  font-weight:700;
  padding:8px 14px;
  font-size:0.95rem;
  border-width:1.5px;
}

.btn-contact{
  min-width:120px;
  font-weight:700;
  padding:9px 14px;
  font-size:0.95rem;
  border:2px solid #111827;
  color:#ffffff;
  background:#111827;
  border-radius:8px;
  transition:all 0.2s ease;
}
.btn-contact:hover{
  background:#c5a662;
  border-color:#c5a662;
  color:#111827;
  text-decoration:none;
}

.page-body{
  flex:1;
}

*{ box-sizing:border-box; }
body{
  margin:0;
  font-family:"Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  background:#f7f7f8;
  color:#0f172a;
  min-height:100vh;
  display:flex;
  flex-direction:column;
  font-size:15px;
  line-height:1.5;
}

.hero-header{
  position:relative;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  padding:8px 18px;
  background:#ffffff;
  border-bottom:1px solid #e5e7eb;
  z-index:30;
}

.hero-nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:22px;
  flex:1;
}

.hero-nav-toggle{
  display:none;
  align-items:center;
  justify-content:center;
  width:44px;
  height:44px;
  border:1px solid #e5e7eb;
  background:#ffffff;
  border-radius:10px;
  padding:8px;
  cursor:pointer;
}
.hero-nav-toggle-box{
  display:flex;
  flex-direction:column;
  gap:6px;
  width:100%;
}
.hero-nav-toggle-line{
  display:block;
  width:100%;
  height:2px;
  background:#111827;
  border-radius:4px;
  transition:transform 0.2s ease, opacity 0.2s ease;
}
.hero-nav-toggle.is-active .hero-nav-toggle-line:nth-child(1){
  transform:translateY(8px) rotate(45deg);
}
.hero-nav-toggle.is-active .hero-nav-toggle-line:nth-child(2){
  opacity:0;
}
.hero-nav-toggle.is-active .hero-nav-toggle-line:nth-child(3){
  transform:translateY(-8px) rotate(-45deg);
}

.brand-logo{
  height: 52px;
  width:auto;
  object-fit:contain;
}
.brand-logo-compact{
  display:none;
  height:44px;
  width:auto;
}
.brand-logo-full{
  display:block;
}

.hero-actions{
  display:flex;
  align-items:center;
  gap:10px;
}

@media (max-width: 1100px){
  .js .hero-nav{
    position:absolute;
    top:100%;
    left:0;
    right:0;
    display:none;
    flex-direction:column;
    align-items:flex-start;
    gap:16px;
    padding:14px 16px 18px;
    background:#ffffff;
    border-bottom:1px solid #e5e7eb;
    box-shadow:0 10px 28px rgba(0,0,0,0.08);
  }
  .js .hero-nav.is-open{
    display:flex;
  }
  .hero-center{
    width:100%;
    justify-content:flex-start;
    flex-direction:column;
    align-items:flex-start;
    gap:12px;
  }
  .hero-actions{
    width:100%;
    justify-content:flex-start;
    gap:10px;
    flex-direction:column;
    align-items:stretch;
  }
  .hero-actions .btn,
  .hero-actions .btn-login,
  .hero-actions .btn-contact{
    width:100%;
    text-align:center;
  }
  .lang-toggle{
    display:block;
    font-weight:700;
  }
  .js .hero-nav-toggle{
    display:flex;
  }
  .brand-logo-full{
    display:none;
  }
  .brand-logo-compact{
    display:block;
  }
  .brand-pos{
    display:none;
  }
  .hero-home-link{
    font-size:1.05rem;
  }
  .hero-header .nav-dropdown .dropdown-panel{
    position:relative;
    top:0;
    left:0;
    transform:none;
    opacity:1;
    visibility:visible;
    pointer-events:auto;
    box-shadow:none;
    border:0;
    padding:0;
    background:transparent;
  }
  .hero-header .nav-dropdown .dropdown-list{
    gap:8px;
    padding-left:10px;
  }
}

.btn-login{
  min-width:110px;
  font-weight:700;
  padding:8px 14px;
  font-size:0.95rem;
  border-width:1.5px;
}

.btn-contact{
  min-width:120px;
  font-weight:700;
  padding:9px 14px;
  font-size:0.95rem;
  border:2px solid #111827;
  color:#ffffff;
  background:#111827;
  border-radius:8px;
  transition:all 0.2s ease;
}
.btn-contact:hover{
  background:#c5a662;
  border-color:#c5a662;
  color:#111827;
  text-decoration:none;
}

.page-body{
  flex:1;
}

.policy-container{
  max-width: 960px;
  margin: 32px auto 40px;
  padding: 24px;
  background: #ffffff;
  border-radius: 3px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}
.policy-header h1{
  margin: 0 0 8px;
  font-size: 2rem;
  font-weight: 800;
}
.policy-meta{
  margin: 0 0 16px;
  color: #6b7280;
  font-size: 0.95rem;
}
.policy-container h2{
  margin-top: 28px;
  margin-bottom: 10px;
  font-size: 1.35rem;
  font-weight: 800;
}
.policy-container h3{
  margin-top: 18px;
  margin-bottom: 8px;
  font-size: 1.1rem;
  font-weight: 700;
}
.policy-container p{
  margin: 0 0 12px;
  line-height: 1.6;
}
.policy-container ul{
  margin: 0 0 12px 18px;
  padding: 0;
  line-height: 1.6;
}
.policy-container li{
  margin-bottom: 6px;
}
.policy-container address{
  font-style: normal;
  line-height: 1.6;
}
