:root{
  --navy-950:#0a1826;
  --navy-900:#0f2540;
  --navy-800:#173a5e;
  --navy-700:#1f4d78;
  --amber-500:#d69a3e;
  --amber-600:#c1822a;
  --gray-50:#f7f8fa;
  --gray-100:#eef1f5;
  --gray-200:#dde2e8;
  --gray-500:#6b7684;
  --gray-700:#3a4552;
  --white:#ffffff;
  --radius:14px;
  --shadow-sm:0 2px 10px rgba(15,37,64,.06);
  --shadow-md:0 12px 32px rgba(15,37,64,.12);
  --font-head:'Poppins',sans-serif;
  --font-body:'Manrope',sans-serif;
}

*,*::before,*::after{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  font-family:var(--font-body);
  color:var(--gray-700);
  background:var(--white);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  opacity:1;
  transition:opacity .18s ease;
}
body.page-leaving{opacity:0;}
h1,h2,h3{font-family:var(--font-head);color:var(--navy-900);margin:0 0 .5em;line-height:1.15;}
p{margin:0 0 1em;}
a{color:inherit;text-decoration:none;}
img{max-width:100%;display:block;}
ul{margin:0;padding:0;list-style:none;}
button{font-family:inherit;}

.container{
  max-width:1200px;
  margin:0 auto;
  padding:0 24px;
}

.eyebrow{
  font-size:.8rem;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--amber-600);
  margin:0 0 12px;
}
.center{text-align:center;margin-left:auto;margin-right:auto;}

.section{padding:88px 0;}
.section-alt{background:var(--gray-50);}
.section-title{font-size:clamp(1.6rem,3vw,2.3rem);}
.section-sub{
  max-width:600px;
  margin:0 auto 48px;
  color:var(--gray-500);
  text-align:center;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:12px 22px;
  border-radius:999px;
  font-weight:700;
  font-size:.95rem;
  border:2px solid transparent;
  cursor:pointer;
  transition:transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  white-space:nowrap;
}
.btn-primary{
  background:var(--amber-500);
  color:var(--navy-950);
}
.btn-primary:hover{background:var(--amber-600); transform:translateY(-1px); box-shadow:var(--shadow-sm);}
.btn-ghost{
  background:transparent;
  border-color:rgba(255,255,255,.4);
  color:var(--white);
}
.btn-ghost:hover{background:rgba(255,255,255,.12);}
.btn-lg{padding:15px 28px; font-size:1rem;}

.site-header{
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--gray-200);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  height:76px;
}
.logo{display:flex;align-items:center;gap:10px;}
.logo-img{height:36px;width:auto;}

.main-nav{display:flex;gap:16px;}
.main-nav a{
  font-weight:600;
  font-size:.82rem;
  white-space:nowrap;
  color:var(--gray-700);
  transition:color .15s ease;
}
.main-nav a:hover{color:var(--amber-600);}

.header-actions{display:flex;align-items:center;gap:14px;}
.header-actions .phone-link{font-size:.82rem;}
.header-actions .btn{padding:10px 16px; font-size:.82rem;}

.lang-switch{
  display:flex;
  background:var(--gray-100);
  border-radius:999px;
  padding:3px;
  gap:2px;
}
.lang-btn{
  border:none;
  background:transparent;
  padding:5px 10px;
  border-radius:999px;
  font-weight:700;
  font-size:.72rem;
  color:var(--gray-500);
  cursor:pointer;
  transition:background .15s ease, color .15s ease;
}
.lang-btn.active{
  background:var(--navy-900);
  color:var(--white);
}
.mobile-extra{display:none;}

.phone-link{
  display:flex;align-items:center;gap:8px;
  font-weight:700;
  color:var(--navy-900);
  font-size:.92rem;
}
.phone-link svg{color:var(--amber-600);}

.nav-toggle{
  display:none;
  flex-direction:column;
  justify-content:center;
  gap:5px;
  width:40px;height:40px;
  background:none;border:none;
  cursor:pointer;
}
.nav-toggle span{
  display:block;height:2px;width:100%;
  background:var(--navy-900);
  border-radius:2px;
}

.hero{
  background:linear-gradient(160deg, var(--navy-950) 0%, var(--navy-900) 55%, var(--navy-800) 100%);
  color:var(--white);
  position:relative;
  overflow:hidden;
}
.hero-inner{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:56px;
  align-items:stretch;
  padding:88px 24px 72px;
}
.hero-copy .eyebrow{color:var(--amber-500);}
.hero-copy h1{
  color:var(--white);
  font-size:clamp(2rem,4vw,3.1rem);
}
.hero-sub{
  color:rgba(255,255,255,.78);
  font-size:1.05rem;
  max-width:520px;
}
.hero-cta{display:flex;gap:14px;flex-wrap:wrap;margin:28px 0 16px;}
.hero-note{color:rgba(255,255,255,.6);font-size:.85rem;margin:0;}

.hero-visual{position:relative; display:flex; justify-content:center;}
.hero-img{
  width:100%;
  max-width:420px;
  height:100%;
  object-fit:cover;
  border-radius:20px;
  box-shadow:var(--shadow-md);
}

.trust-bar{
  background:var(--navy-950);
  border-top:1px solid rgba(255,255,255,.08);
}
.trust-inner{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  padding:26px 24px;
}
.trust-item{
  text-align:center;
  display:flex;
  flex-direction:column;
  gap:2px;
  border-left:1px solid rgba(255,255,255,.1);
}
.trust-item:first-child{border-left:none;}
.trust-item strong{
  font-family:var(--font-head);
  color:var(--amber-500);
  font-size:1.4rem;
}
.trust-item span{
  font-size:.78rem;
  color:rgba(255,255,255,.65);
  text-transform:uppercase;
  letter-spacing:.04em;
}

.services-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.service-card{
  background:var(--white);
  border:1px solid var(--gray-200);
  border-radius:var(--radius);
  padding:30px 26px;
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.service-card:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow-md);
  border-color:transparent;
}
.service-icon{
  width:52px;height:52px;
  border-radius:12px;
  background:var(--navy-900);
  color:var(--amber-500);
  display:flex;align-items:center;justify-content:center;
  margin-bottom:18px;
}
.service-card h3{font-size:1.1rem;}
.service-card p{color:var(--gray-500);font-size:.92rem;margin:0;}

.gallery-item{
  position:relative;
  margin:0;
  aspect-ratio:1/1;
  border-radius:var(--radius);
  overflow:hidden;
}
.gallery-img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:transform .3s ease;
}
.gallery-item:hover .gallery-img{transform:scale(1.03);}
.gallery-item figcaption{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  margin:0;
  padding:28px 14px 12px;
  background:linear-gradient(to top, rgba(10,24,38,.78), rgba(10,24,38,0));
  font-weight:600;
  font-size:.85rem;
  color:var(--white);
}
.carousel{
  position:relative;
  max-width:820px;
  margin:0 auto;
}
.carousel-track{
  display:flex;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  scroll-behavior:smooth;
  -webkit-overflow-scrolling:touch;
  scrollbar-width:none;
  border-radius:var(--radius);
}
.carousel-track::-webkit-scrollbar{display:none;}
.carousel-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:44px;
  height:44px;
  border-radius:50%;
  background:var(--white);
  border:1px solid var(--gray-200);
  box-shadow:var(--shadow-md);
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  color:var(--navy-900);
  z-index:2;
}
.carousel-arrow.prev{left:-56px;}
.carousel-arrow.next{right:-56px;}
.carousel-arrow:hover{background:var(--amber-500); color:var(--navy-950);}
.carousel-dots{
  display:flex;
  justify-content:center;
  gap:8px;
  margin-top:20px;
}
.carousel-dot{
  width:8px;
  height:8px;
  padding:0;
  border-radius:999px;
  background:var(--gray-200);
  border:none;
  cursor:pointer;
  transition:width .2s ease, background .2s ease;
}
.carousel-dot.active{
  width:24px;
  background:var(--amber-500);
}

.carousel.gallery-carousel{max-width:820px;}
.gallery-carousel .carousel-track{gap:16px;}
.gallery-slide{
  flex:0 0 calc(50% - 8px);
  scroll-snap-align:start;
}

.aa-slide{
  flex:0 0 100%;
  scroll-snap-align:start;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}
.aa-photo{
  position:relative;
  aspect-ratio:1/1;
  border-radius:var(--radius);
  overflow:hidden;
}
.aa-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.aa-tag{
  position:absolute;
  bottom:10px;
  left:10px;
  background:rgba(10,24,38,.85);
  color:var(--white);
  font-weight:700;
  font-size:.72rem;
  letter-spacing:.06em;
  text-transform:uppercase;
  padding:5px 12px;
  border-radius:999px;
}
.aa-tag.after{
  background:var(--amber-500);
  color:var(--navy-950);
}

.about-inner{
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  gap:56px;
  align-items:stretch;
}
.about-visual{display:flex;}
.about-img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:20px;
  box-shadow:var(--shadow-md);
}
.about-list{margin-top:20px;}
.about-list li{
  position:relative;
  padding-left:28px;
  margin-bottom:10px;
  font-weight:600;
  color:var(--navy-900);
}
.about-list li::before{
  content:"";
  position:absolute;
  left:0;top:6px;
  width:16px;height:16px;
  border-radius:50%;
  background:var(--amber-500);
}

.faq-list{max-width:760px;margin:0 auto;}
.faq-item{
  border-bottom:1px solid var(--gray-200);
}
.faq-question{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  background:none;
  border:none;
  text-align:left;
  padding:22px 4px;
  font-family:var(--font-head);
  font-weight:600;
  font-size:1rem;
  color:var(--navy-900);
  cursor:pointer;
}
.faq-icon{
  flex-shrink:0;
  width:28px;height:28px;
  border-radius:50%;
  background:var(--gray-100);
  color:var(--navy-900);
  display:flex;align-items:center;justify-content:center;
  font-size:1.1rem;
  transition:transform .2s ease, background .2s ease;
}
.faq-item.open .faq-icon{background:var(--amber-500); transform:rotate(45deg);}
.faq-answer{
  max-height:0;
  overflow:hidden;
  transition:max-height .25s ease;
}
.faq-answer p{padding:0 4px 20px; color:var(--gray-500); margin:0;}
.faq-item.open .faq-answer{max-height:200px;}

.contact-inner{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:60px;
}
.contact-detail{
  display:flex;
  align-items:center;
  gap:14px;
  padding:14px 0;
  border-bottom:1px solid var(--gray-200);
  font-weight:600;
  color:var(--navy-900);
}
.contact-detail svg{color:var(--amber-600); flex-shrink:0;}
.contact-badge{
  display:inline-block;
  margin-top:24px;
  padding:8px 16px;
  border-radius:999px;
  background:var(--navy-900);
  color:var(--amber-500);
  font-size:.8rem;
  font-weight:700;
}

.contact-form{
  background:var(--gray-50);
  border:1px solid var(--gray-200);
  border-radius:var(--radius);
  padding:36px;
}
.form-row{margin-bottom:18px;}
.form-row label{
  display:block;
  font-weight:700;
  font-size:.85rem;
  color:var(--navy-900);
  margin-bottom:6px;
}
.form-row input,
.form-row select,
.form-row textarea{
  width:100%;
  padding:12px 14px;
  border-radius:10px;
  border:1px solid var(--gray-200);
  background:var(--white);
  font-family:inherit;
  font-size:.95rem;
  color:var(--gray-700);
  resize:vertical;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus{
  outline:none;
  border-color:var(--amber-500);
  box-shadow:0 0 0 3px rgba(214,154,62,.18);
}
.form-note{
  margin:14px 0 0;
  font-size:.85rem;
  text-align:center;
  color:var(--gray-500);
}
.form-note.success{color:#1a7f4e;font-weight:700;}

.site-footer{
  background:var(--navy-950);
  color:rgba(255,255,255,.75);
  padding-top:56px;
}
.footer-inner{
  display:grid;
  grid-template-columns:1.3fr 1fr 1fr;
  gap:32px;
  padding-bottom:36px;
  border-bottom:1px solid rgba(255,255,255,.1);
}
.footer-logo-img{height:40px;width:auto;filter:brightness(0) invert(1);}
.footer-inner p{color:rgba(255,255,255,.55); font-size:.88rem; margin-top:10px;}
.footer-nav{display:flex;flex-direction:column;gap:10px;}
.footer-nav a{font-size:.9rem; color:rgba(255,255,255,.75);}
.footer-nav a:hover{color:var(--amber-500);}
.footer-contact{display:flex;flex-direction:column;gap:10px;}
.footer-contact a{font-size:.9rem; color:rgba(255,255,255,.75);}
.footer-contact a:hover{color:var(--amber-500);}
.footer-bottom{
  padding:20px 24px;
  text-align:center;
  font-size:.8rem;
  color:rgba(255,255,255,.45);
}

@media (max-width:1080px){
  .main-nav{display:none;}
  .header-actions{display:none;}
  .nav-toggle{display:flex;}
  .hero-inner{grid-template-columns:1fr; align-items:center; padding-top:56px;}
  .hero-img{height:auto; aspect-ratio:3/2; max-width:480px;}
  .hero-visual{order:-1;}
  .trust-inner{grid-template-columns:repeat(2,1fr); gap:20px;}
  .trust-item:nth-child(3){border-left:none;}
  .services-grid{grid-template-columns:repeat(2,1fr);}
  .carousel-arrow.prev{left:8px;}
  .carousel-arrow.next{right:8px;}
  .about-inner{grid-template-columns:1fr;}
  .about-visual{order:-1; max-width:340px; margin:0 auto;}
  .about-img{height:auto; aspect-ratio:1/1;}
  .contact-inner{grid-template-columns:1fr;}
  .footer-inner{grid-template-columns:1fr; text-align:center;}
  .footer-nav,.footer-contact{align-items:center;}

  .site-header{position:sticky;}
  .main-nav.open{
    display:flex;
    flex-direction:column;
    position:absolute;
    top:76px;left:0;right:0;
    max-height:calc(100vh - 76px);
    overflow-y:auto;
    background:var(--white);
    padding:16px 24px 24px;
    gap:4px;
    border-bottom:1px solid var(--gray-200);
    box-shadow:var(--shadow-md);
  }
  .main-nav.open a{padding:12px 0; border-bottom:1px solid var(--gray-100);}
  .main-nav .lang-switch.mobile-extra{
    display:inline-flex;
    align-self:flex-start;
    margin-bottom:12px;
  }
  .main-nav .mobile-nav-footer.mobile-extra{
    display:flex;
    flex-direction:column;
    gap:14px;
    margin-top:16px;
    padding-top:16px;
    border-top:1px solid var(--gray-100);
  }
  .main-nav .mobile-nav-footer .phone-link{justify-content:center;}
  .main-nav .mobile-nav-footer .btn{width:100%;}
}

@media (max-width:640px){
  .section{padding:64px 0;}
  .services-grid{grid-template-columns:1fr;}
  .gallery-slide{flex:0 0 100%;}
  .gallery-carousel .gallery-item{max-width:260px; margin:0 auto;}
  .hero-cta{flex-direction:column; align-items:stretch;}
  .hero-cta .btn{width:100%;}
  .hero-img{max-width:280px;}
  .contact-form{padding:24px;}
  .trust-inner{padding:22px 16px;}
  .trust-item strong{font-size:1.2rem;}
  .aa-slide{grid-template-columns:1fr 1fr; gap:8px;}
  .carousel-arrow{display:none;}
}
